mirror of https://github.com/AMT-Cheif/drift.git
Remove two more tiny deprecated members
This commit is contained in:
parent
64bbbde689
commit
10b12a5976
|
@ -6,11 +6,6 @@ typedef OnCreate = Future<void> Function(Migrator m);
|
|||
/// Signature of a function that will be invoked when a database is upgraded.
|
||||
typedef OnUpgrade = Future<void> Function(Migrator m, int from, int to);
|
||||
|
||||
/// Signature of a function that's called after a migration has finished and the
|
||||
/// database is ready to be used. Useful to populate data.
|
||||
@Deprecated('This is never used')
|
||||
typedef OnMigrationFinished = Future<void> Function();
|
||||
|
||||
/// Signature of a function that's called before a database is marked opened by
|
||||
/// moor, but after migrations took place. This is a suitable callback to to
|
||||
/// populate initial data or issue `PRAGMA` statements that you want to use.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## unreleased
|
||||
|
||||
- Remove `SqlEngine.withOptions` constructor - just use the regular one
|
||||
|
||||
## 0.7.0
|
||||
|
||||
- New feature: Table valued functions.
|
||||
|
|
|
@ -30,9 +30,6 @@ class SqlEngine {
|
|||
registerTable(sqliteSequence);
|
||||
}
|
||||
|
||||
@Deprecated('Use SqlEngine(options) instead')
|
||||
factory SqlEngine.withOptions(EngineOptions options) = SqlEngine;
|
||||
|
||||
/// Obtain a [SchemaFromCreateTable] instance compatible with the
|
||||
/// configuration of this engine.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue