drift/sally/test/tables/todos.dart

10 lines
252 B
Dart
Raw Normal View History

2019-02-14 07:01:57 -08:00
import 'package:sally/sally.dart';
@DataClassName('TodoEntry')
class TodosTable extends Table {
IntColumn get id => integer().autoIncrement()();
TextColumn get title => text().withLength(min: 4, max: 6)();
TextColumn get content => text()();
}