mirror of
https://github.com/SrIzan10/lofi.git
synced 2026-06-06 00:56:53 +00:00
10 lines
205 B
SQL
10 lines
205 B
SQL
CREATE TABLE `song_ids` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`file_id` text NOT NULL,
|
|
`spotify_id` text,
|
|
`title` text NOT NULL,
|
|
`artists` text NOT NULL,
|
|
`image` text NOT NULL,
|
|
`label` text NOT NULL
|
|
);
|