9 lines
219 B
Dart
Executable File
9 lines
219 B
Dart
Executable File
part of '../database.dart';
|
|
|
|
class LyricsTable extends Table {
|
|
IntColumn get id => integer().autoIncrement()();
|
|
|
|
TextColumn get trackId => text()();
|
|
TextColumn get data => text().map(SubtitleTypeConverter())();
|
|
}
|