-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builder giving undexpected error/warning .drfit
file
#3364
Comments
Regarding the "could not read tables" error, are you listing a table that was defined from a
This is probably due to a trailing comma in the table definition, which is not allowed.
This one is kind of interesting, can you post the The error about a table being unknown is probably due to a missing I also recommend checking the datetime errors - if you have the option to store datetimes as text enabled, it's better to do |
Thank you, while most of issues seems to have resolved, still few persist.
Below are the tables import 'package:xxx/common/enum/app_level_common_enum.dart';
CREATE TABLE IF NOT EXISTS one_tap_login_table (
id INTEGER PRIMARY KEY AUTOINCREMENT,
email TEXT,
password TEXT,
fullName TEXT,
avatar_image_local_path TEXT,
last_logged_in_auth_type ENUM(AuthType)
);
|
Describe the bug
Below is the log, now sure why is it happening and not sure what to make sense out of it.
Version
drift_dev: ^2.16.0
drift: ^2.16.0
The text was updated successfully, but these errors were encountered: