Bump runner

This commit is contained in:
Tobe O 2019-04-20 00:31:44 -04:00
parent 117896874e
commit 8996f150e0
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
# 2.0.0-beta.0
* Make `reset` reverse migrations.
# 2.0.0-alpha.5 # 2.0.0-alpha.5
* Support default values for columns. * Support default values for columns.

View file

@ -61,7 +61,7 @@ class PostgresMigrationRunner implements MigrationRunner {
int curBatch = (r[0][0] ?? 0) as int; int curBatch = (r[0][0] ?? 0) as int;
int batch = curBatch + 1; int batch = curBatch + 1;
for (var k in toRun) { for (var k in toRun.reversed) {
var migration = migrations[k]; var migration = migrations[k];
var schema = new PostgresSchema(); var schema = new PostgresSchema();
migration.up(schema); migration.up(schema);

View file

@ -1,5 +1,5 @@
name: angel_migration_runner name: angel_migration_runner
version: 2.0.0-alpha.5 version: 2.0.0-beta.0
description: Command-line based database migration runner for Angel's ORM. description: Command-line based database migration runner for Angel's ORM.
author: Tobe O <thosakwe@gmail.com> author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/migration homepage: https://github.com/angel-dart/migration