feat: remove cc_stream_setting models

- We don't drop the cc_stream_setting table from the database to prevent data loss. This will be handled in a future release.
This commit is contained in:
jo 2022-09-06 11:58:26 +02:00 committed by Kyle Robbertze
parent 2a74649882
commit 65d3552fc7
14 changed files with 1 additions and 2219 deletions

View file

@ -394,20 +394,6 @@ CREATE TABLE "cc_subjs_token"
CONSTRAINT "cc_subjs_token_idx" UNIQUE ("token")
);
-----------------------------------------------------------------------
-- cc_stream_setting
-----------------------------------------------------------------------
DROP TABLE IF EXISTS "cc_stream_setting" CASCADE;
CREATE TABLE "cc_stream_setting"
(
"keyname" VARCHAR(64) NOT NULL,
"value" VARCHAR(255),
"type" VARCHAR(16) NOT NULL,
PRIMARY KEY ("keyname")
);
-----------------------------------------------------------------------
-- cc_login_attempts
-----------------------------------------------------------------------