mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 00:25:17 +00:00
10 lines
220 B
Dart
10 lines
220 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())();
|
|
}
|