1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-02-03 02:47:36 +01:00

9 lines
202 B
MySQL
Raw Normal View History

2021-07-11 01:02:53 +02:00
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;