1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00

Make bitrate field int to match xml schema datatype.

Correct index names and FK refs
This commit is contained in:
Carl Hall 2020-08-23 14:29:09 -07:00
parent be305225e1
commit 51b30014c6
7 changed files with 13 additions and 13 deletions

View File

@ -645,7 +645,7 @@ class PodcastEpisode(db.Entity):
created = Required(datetime, precision=0, default=now)
size = Optional(int, nullable=True)
suffix = Optional(str, nullable=True)
bitrate = Optional(str, nullable=True)
bitrate = Optional(int, nullable=True)
content_type = Optional(str, nullable=True)
cover_art = Optional(str, nullable=True)
genre = Optional(str, nullable=True)

View File

@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created DATETIME NOT NULL,
size INTEGER,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INTEGER,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),

View File

@ -28,11 +28,11 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created TIMESTAMP NOT NULL,
size INTEGER,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INTEGER,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),
year SMALLINT
);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_channel(id);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_episode(channel_id);
CREATE INDEX IF NOT EXISTS index_episode_status ON podcast_episode(status);

View File

@ -28,11 +28,11 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created DATETIME NOT NULL,
size INT,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INT,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),
year SMALLINT
);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_channel(id);
CREATE INDEX IF NOT EXISTS index_episode_status_id_fk ON podcast_episode(status);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_episode(channel_id);
CREATE INDEX IF NOT EXISTS index_episode_status ON podcast_episode(status);

View File

@ -186,7 +186,7 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created DATETIME NOT NULL,
size INTEGER,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INTEGER,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),

View File

@ -187,11 +187,11 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created TIMESTAMP NOT NULL,
size INTEGER,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INTEGER,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),
year SMALLINT
);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_channel(id);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_episode(channel_id);
CREATE INDEX IF NOT EXISTS index_episode_status ON podcast_episode(status);

View File

@ -189,11 +189,11 @@ CREATE TABLE IF NOT EXISTS podcast_episode (
created DATETIME NOT NULL,
size INT,
suffix VARCHAR(8),
bitrate VARCHAR(16),
bitrate INTEGER,
content_type VARCHAR(64),
cover_art VARCHAR(256),
genre VARCHAR(16),
year SMALLINT
);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_channel(id);
CREATE INDEX IF NOT EXISTS index_episode_status_id_fk ON podcast_episode(status);
CREATE INDEX IF NOT EXISTS index_episode_channel_id_fk ON podcast_episode(channel_id);
CREATE INDEX IF NOT EXISTS index_episode_status ON podcast_episode(status);