mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-14 18:03:44 +01:00
9 lines
202 B
SQL
9 lines
202 B
SQL
CREATE TABLE IF NOT EXISTS radio_channels (
|
|
source INTEGER NOT NULL DEFAULT 0,
|
|
name TEXT DEFAULT '',
|
|
url TEXT DEFAULT '',
|
|
thumbnail_url TEXT DEFAULT ''
|
|
);
|
|
|
|
UPDATE schema_version SET version=15;
|