mirror of https://github.com/AMT-Cheif/drift.git
Test transactions in migrations (#430)
This commit is contained in:
parent
97127782b2
commit
bc1f347498
|
@ -89,7 +89,7 @@ class Database extends _$Database {
|
||||||
|
|
||||||
/// It will be set in the onUpgrade callback. Null if no migration ocurred
|
/// It will be set in the onUpgrade callback. Null if no migration ocurred
|
||||||
int schemaVersionChangedFrom;
|
int schemaVersionChangedFrom;
|
||||||
|
|
||||||
/// It will be set in the onUpgrade callback. Null if no migration ocurred
|
/// It will be set in the onUpgrade callback. Null if no migration ocurred
|
||||||
int schemaVersionChangedTo;
|
int schemaVersionChangedTo;
|
||||||
|
|
||||||
|
@ -99,7 +99,10 @@ class Database extends _$Database {
|
||||||
onCreate: (m) async {
|
onCreate: (m) async {
|
||||||
await m.createTable(users);
|
await m.createTable(users);
|
||||||
if (schemaVersion >= 2) {
|
if (schemaVersion >= 2) {
|
||||||
await m.createTable(friendships);
|
// ensure that transactions can be used in a migration callback.
|
||||||
|
await transaction(() async {
|
||||||
|
await m.createTable(friendships);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onUpgrade: (m, from, to) async {
|
onUpgrade: (m, from, to) async {
|
||||||
|
|
|
@ -100,7 +100,7 @@ abstract class GeneratedDatabase extends DatabaseConnectionUser
|
||||||
///
|
///
|
||||||
/// This api is mainly used internally in moor, especially to implement the
|
/// This api is mainly used internally in moor, especially to implement the
|
||||||
/// [beforeOpen] callback from the database site.
|
/// [beforeOpen] callback from the database site.
|
||||||
/// However, it can also be used if yuo need to create tables manually and
|
/// However, it can also be used if you need to create tables manually and
|
||||||
/// outside of a [MigrationStrategy]. For almost all use cases, overriding
|
/// outside of a [MigrationStrategy]. For almost all use cases, overriding
|
||||||
/// [migration] should suffice.
|
/// [migration] should suffice.
|
||||||
@protected
|
@protected
|
||||||
|
|
Loading…
Reference in New Issue