DataBridge Documentation 2.0.17
A Java library for managing database connections and transactions
|
Public Member Functions | |
String | getAppliedAt () |
String | getChecksum () |
String | getMigrationDescription () |
int | getVersionNumber () |
String | toString () |
The SchemaChangelog class represents an entry in the schema changelog table for tracking the migrations that have been applied to the database.
Each changelog entry includes the version number of the migration, a description of the migration, the timestamp when the migration was applied, and a checksum to verify the integrity of the migration script.
int io.github.kdesp73.databridge.migration.SchemaChangelog.getVersionNumber | ( | ) |
Returns the version number of the migration.
String io.github.kdesp73.databridge.migration.SchemaChangelog.getMigrationDescription | ( | ) |
Returns the description of the migration.
String io.github.kdesp73.databridge.migration.SchemaChangelog.getAppliedAt | ( | ) |
Returns the timestamp of when the migration was applied.
String io.github.kdesp73.databridge.migration.SchemaChangelog.getChecksum | ( | ) |
Returns the checksum associated with the migration to verify its integrity.
String io.github.kdesp73.databridge.migration.SchemaChangelog.toString | ( | ) |
Returns a string representation of the SchemaChangelog object, including all its properties.