mirror of https://github.com/AMT-Cheif/drift.git
Remove unused import, add changelog
This commit is contained in:
parent
1497d719b5
commit
056fdac8cb
|
@ -3,6 +3,7 @@
|
||||||
- Add the support for `textEnum`.
|
- Add the support for `textEnum`.
|
||||||
- Adds the `case_from_dart_to_sql` option with the possible values: `preserve`, `camelCase`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
|
- Adds the `case_from_dart_to_sql` option with the possible values: `preserve`, `camelCase`, `CONSTANT_CASE`, `snake_case`, `PascalCase`, `lowercase` and `UPPERCASE` (default: `snake_case`).
|
||||||
- `drift_dev schema dump` can now dump the schema of existing sqlite3 database files as well.
|
- `drift_dev schema dump` can now dump the schema of existing sqlite3 database files as well.
|
||||||
|
- Warn about suspicious int or text literals being inserted into enum columns.
|
||||||
|
|
||||||
## 2.3.3
|
## 2.3.3
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import 'package:analyzer/dart/ast/ast.dart' as dart;
|
import 'package:analyzer/dart/ast/ast.dart' as dart;
|
||||||
import 'package:analyzer/dart/element/element.dart';
|
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:drift/drift.dart' show DriftSqlType;
|
import 'package:drift/drift.dart' show DriftSqlType;
|
||||||
import 'package:drift_dev/src/analysis/driver/driver.dart';
|
import 'package:drift_dev/src/analysis/driver/driver.dart';
|
||||||
|
|
Loading…
Reference in New Issue