8 lines
189 B
Dart
8 lines
189 B
Dart
|
import 'package:moor/moor.dart';
|
||
|
|
||
|
class Plans extends Table {
|
||
|
IntColumn get id => integer().autoIncrement()();
|
||
|
TextColumn get days => text()();
|
||
|
TextColumn get workouts => text()();
|
||
|
}
|