MigrationExecutor constructor

const MigrationExecutor({
  1. required EnvConfig env,
  2. required String password,
  3. required String migrationsPath,
  4. bool allowRollback = true,
})

Implementation

const MigrationExecutor({
  required this.env,
  required this.password,
  required this.migrationsPath,
  this.allowRollback = true,
});