io.convergence_platform.common.database.IDatabaseMigrationEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
Holds the common functionality needed by all Convergence Platform-based services written in Java.
The newest version!
package io.convergence_platform.common.database;
import java.sql.Timestamp;
public interface IDatabaseMigrationEntry {
String getMigrationName();
String getCommand();
void setMigrationName(String name);
void setCommand(String command);
void setAppliedTimestamp(Timestamp from);
}