Remove two more tiny deprecated members

This commit is contained in:
Simon Binder 2020-02-17 21:22:16 +01:00
parent 64bbbde689
commit 10b12a5976
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
3 changed files with 4 additions and 8 deletions

View File

@ -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.

View File

@ -1,3 +1,7 @@
## unreleased
- Remove `SqlEngine.withOptions` constructor - just use the regular one
## 0.7.0
- New feature: Table valued functions.

View File

@ -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.
///