add proper logging

This commit is contained in:
shenlong-tanwen
2024-08-21 23:43:48 +05:30
parent 1631df70e9
commit 75448ce56b
37 changed files with 923 additions and 224 deletions
@@ -6,7 +6,10 @@ class Store extends Table {
@override
String get tableName => 'store';
IntColumn get id => integer().autoIncrement()();
IntColumn get id => integer()();
IntColumn get intValue => integer().nullable()();
TextColumn get stringValue => text().nullable()();
@override
Set<Column> get primaryKey => {id};
}