angel_migration_runner 2.0.0-alpha.3 copy "angel_migration_runner: ^2.0.0-alpha.3" to clipboard
angel_migration_runner: ^2.0.0-alpha.3 copied to clipboard

outdated

Database migration runner for Angel's ORM.

example/main.dart

import 'package:angel_migration_runner/angel_migration_runner.dart';
import 'package:angel_migration_runner/postgres.dart';
import 'package:postgres/postgres.dart';
import '../../angel_migration/example/todo.dart';

var migrationRunner = new PostgresMigrationRunner(
  new PostgreSQLConnection('127.0.0.1', 5432, 'test'),
  migrations: [
    new UserMigration(),
    new TodoMigration(),
  ],
);

main(List<String> args) => runMigrations(migrationRunner, args);
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Database migration runner for Angel's ORM.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

angel_migration, angel_orm, args, postgres

More

Packages that depend on angel_migration_runner