Initial commit

This commit is contained in:
2025-11-09 03:18:49 +05:00
commit a59c1a7a01
33 changed files with 1688 additions and 0 deletions

View File

@ -0,0 +1,17 @@
INSERT INTO "source_provider" ("id", "name")
OVERRIDING SYSTEM VALUE
VALUES
(1, 'YOUTUBE'),
(2, 'LOCAL'),
(3, 'EXTERNAL')
ON CONFLICT ("id") DO NOTHING;
INSERT INTO "source_type" ("id", "provider_id", "name")
OVERRIDING SYSTEM VALUE
VALUES
(1, 1, 'VIDEO'),
(2, 1, 'PLAYLIST'),
(3, 2, 'FILE'),
(4, 3, 'URL')
ON CONFLICT ("id") DO NOTHING;