Remove unused import, add changelog

This commit is contained in:
Simon Binder 2022-12-19 23:58:08 +01:00
parent 1497d719b5
commit 056fdac8cb
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- 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`).
- `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

View File

@ -1,5 +1,4 @@
import 'package:analyzer/dart/ast/ast.dart' as dart;
import 'package:analyzer/dart/element/element.dart';
import 'package:collection/collection.dart';
import 'package:drift/drift.dart' show DriftSqlType;
import 'package:drift_dev/src/analysis/driver/driver.dart';