mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-06 07:29:42 +00:00
10 lines
355 B
Dart
10 lines
355 B
Dart
part of '../database.dart';
|
|
|
|
class SourceMatchTable extends Table {
|
|
IntColumn get id => integer().autoIncrement()();
|
|
TextColumn get trackId => text()();
|
|
TextColumn get sourceInfo => text().withDefault(const Constant("{}"))();
|
|
TextColumn get sourceType => text()();
|
|
DateTimeColumn get createdAt => dateTime().withDefault(currentDateAndTime)();
|
|
}
|