migration@2.0.0-rc.0
This commit is contained in:
parent
a15815a668
commit
1de827db48
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
# 2.0.0-rc.0
|
||||
* Make abstract `Schema.alter` use `MutableTable`.
|
||||
|
||||
# 2.0.0-alpha.1
|
||||
* Changes to work with `package:angel_orm@2.0.0-dev.15`.
|
||||
|
||||
|
|
|
@ -11,5 +11,5 @@ abstract class Schema {
|
|||
|
||||
void createIfNotExists(String tableName, void callback(Table table));
|
||||
|
||||
void alter(String tableName, void callback(Table table));
|
||||
void alter(String tableName, void callback(MutableTable table));
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/migration
|
||||
|
|
Loading…
Reference in a new issue