mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
9 lines
219 B
Dart
9 lines
219 B
Dart
part of '../database.dart';
|
|
|
|
class LyricsTable extends Table {
|
|
IntColumn get id => integer().autoIncrement()();
|
|
|
|
TextColumn get trackId => text()();
|
|
TextColumn get data => text().map(SubtitleTypeConverter())();
|
|
}
|