Initial and done prolly
This commit is contained in:
commit
6f88b9966f
175 changed files with 15445 additions and 0 deletions
7
lib/db/tables/users_table.dart
Normal file
7
lib/db/tables/users_table.dart
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import 'package:drift/drift.dart';
|
||||
|
||||
class User extends Table {
|
||||
IntColumn get id => integer().autoIncrement()();
|
||||
TextColumn get login => text().unique()();
|
||||
TextColumn get password => text()();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue