migration@2.0.0-rc.0

This commit is contained in:
Tobe O 2019-04-21 13:30:19 -04:00
parent a15815a668
commit 1de827db48
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
# 2.0.0-rc.0
* Make abstract `Schema.alter` use `MutableTable`.
# 2.0.0-alpha.1 # 2.0.0-alpha.1
* Changes to work with `package:angel_orm@2.0.0-dev.15`. * Changes to work with `package:angel_orm@2.0.0-dev.15`.

View file

@ -11,5 +11,5 @@ abstract class Schema {
void createIfNotExists(String tableName, void callback(Table table)); void createIfNotExists(String tableName, void callback(Table table));
void alter(String tableName, void callback(Table table)); void alter(String tableName, void callback(MutableTable table));
} }

View file

@ -1,5 +1,5 @@
name: angel_migration name: angel_migration
version: 2.0.0-alpha.1 version: 2.0.0-rc.0
description: Database migration runtime for Angel's ORM. Use this package to define schemas. description: Database migration runtime for Angel's ORM. Use this package to define schemas.
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