mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-07 07:49:43 +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())();
|
|
}
|