fix example

This commit is contained in:
Moshe Dicker 2024-04-21 18:39:16 -04:00
parent 3da53c1773
commit 216f583617
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ class TodoCategory extends Table {
class Users extends Table {
IntColumn get id => integer().autoIncrement()();
TextColumn get name => text()();
IntColumn get groupId => integer().nullable().references(Groups, #id)();
}
class Groups extends Table {