RhythmBox/lib/services/database/tables/source_match.dart
2024-09-04 23:28:59 +08:00

26 lines
662 B
Dart
Executable File

part of '../database.dart';
enum SourceType {
youtube._('YouTube'),
youtubeMusic._('YouTube Music'),
netease._('Netease Music');
final String label;
const SourceType._(this.label);
}
@TableIndex(
name: 'uniq_track_match',
columns: {#trackId, #sourceId, #sourceType},
unique: true,
)
class SourceMatchTable extends Table {
IntColumn get id => integer().autoIncrement()();
TextColumn get trackId => text()();
TextColumn get sourceId => text()();
TextColumn get sourceType =>
textEnum<SourceType>().withDefault(Constant(SourceType.youtube.name))();
DateTimeColumn get createdAt => dateTime().withDefault(currentDateAndTime)();
}