13 lines
288 B
Dart
13 lines
288 B
Dart
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()();
|
|
}
|