All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gruelbox.transactionoutbox.Migration Maven / Gradle / Ivy

There is a newer version: 6.0.553
Show newest version
package com.gruelbox.transactionoutbox;

import lombok.Value;

/** A database migration script entry. See {@link Dialect#getMigrations()}. */
@Value
public class Migration {
  int version;
  String name;
  String sql;

  public Migration withSql(String sql) {
    return new Migration(version, name, sql);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy