🚀
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import 'package:drift/drift.dart';
|
||||
|
||||
class Store extends Table {
|
||||
const Store();
|
||||
|
||||
@override
|
||||
String get tableName => 'store';
|
||||
|
||||
IntColumn get id => integer().autoIncrement()();
|
||||
IntColumn get intValue => integer().nullable()();
|
||||
TextColumn get stringValue => text().nullable()();
|
||||
}
|
||||
Reference in New Issue
Block a user