MigrationsCompanion constructor

const MigrationsCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> name = const Value.absent(),
  3. Value<MigrationState> migrationState = const Value.absent(),
  4. Value<DateTime?> start = const Value.absent(),
  5. Value<DateTime?> finish = const Value.absent(),
})

Implementation

const MigrationsCompanion({
  this.id = const Value.absent(),
  this.name = const Value.absent(),
  this.migrationState = const Value.absent(),
  this.start = const Value.absent(),
  this.finish = const Value.absent(),
});