DataBridge Documentation 2.0.17
A Java library for managing database connections and transactions
Loading...
Searching...
No Matches
io.github.kdesp73.databridge.migration.SchemaChangelog Class Reference

Public Member Functions

String getAppliedAt ()
 
String getChecksum ()
 
String getMigrationDescription ()
 
int getVersionNumber ()
 
String toString ()
 

Detailed Description

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.

Author
kdesp73

Member Function Documentation

◆ getVersionNumber()

int io.github.kdesp73.databridge.migration.SchemaChangelog.getVersionNumber ( )

Returns the version number of the migration.

Returns
The version number of the migration.

◆ getMigrationDescription()

String io.github.kdesp73.databridge.migration.SchemaChangelog.getMigrationDescription ( )

Returns the description of the migration.

Returns
The description of the migration.

◆ getAppliedAt()

String io.github.kdesp73.databridge.migration.SchemaChangelog.getAppliedAt ( )

Returns the timestamp of when the migration was applied.

Returns
The timestamp of when the migration was applied.

◆ getChecksum()

String io.github.kdesp73.databridge.migration.SchemaChangelog.getChecksum ( )

Returns the checksum associated with the migration to verify its integrity.

Returns
The checksum of the migration.

◆ toString()

String io.github.kdesp73.databridge.migration.SchemaChangelog.toString ( )

Returns a string representation of the SchemaChangelog object, including all its properties.

Returns
A string representing the SchemaChangelog object.

The documentation for this class was generated from the following file: