mirror of https://github.com/AMT-Cheif/drift.git
Test transactions in migrations (#430)
This commit is contained in:
parent
97127782b2
commit
bc1f347498
|
@ -99,7 +99,10 @@ class Database extends _$Database {
|
|||
onCreate: (m) async {
|
||||
await m.createTable(users);
|
||||
if (schemaVersion >= 2) {
|
||||
// ensure that transactions can be used in a migration callback.
|
||||
await transaction(() async {
|
||||
await m.createTable(friendships);
|
||||
});
|
||||
}
|
||||
},
|
||||
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
|
||||
/// [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
|
||||
/// [migration] should suffice.
|
||||
@protected
|
||||
|
|
Loading…
Reference in New Issue