worldhopper/lib/database/tables/series_reading_mode_table.dart
Felipe M. da7d11b33a
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
feat: reading direction per series
2026-02-12 09:15:28 +01:00

17 lines
515 B
Dart

/// SQL schema for the series_reading_mode table
class SeriesReadingModeTable {
SeriesReadingModeTable._();
static const String tableName = 'series_reading_mode';
/// SQL statement to create the series_reading_mode table
static const String createTable = '''
CREATE TABLE $tableName (
series_feed_url TEXT PRIMARY KEY,
reading_mode TEXT NOT NULL
)
''';
/// SQL statement to drop the series_reading_mode table
static const String dropTable = 'DROP TABLE IF EXISTS $tableName';
}