DatabaseMigrationVersionTable constructor
DatabaseMigrationVersionTable({
- TableRelation? tableRelation,
Implementation
DatabaseMigrationVersionTable({super.tableRelation})
: super(tableName: 'serverpod_migrations') {
module = _i1.ColumnString(
'module',
this,
);
version = _i1.ColumnString(
'version',
this,
);
timestamp = _i1.ColumnDateTime(
'timestamp',
this,
);
}