All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
17 lines
515 B
Dart
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';
|
|
}
|