refactor(airtime_mvc): remove dead cc_smemb table and classes

This commit is contained in:
Lucas Bickel 2020-12-27 13:35:34 +01:00
parent 6c4b1b5e71
commit 6651f6bbdf
14 changed files with 25 additions and 2401 deletions

View file

@ -0,0 +1,10 @@
CREATE TABLE "cc_smemb"
(
"id" INTEGER NOT NULL,
"uid" INTEGER DEFAULT 0 NOT NULL,
"gid" INTEGER DEFAULT 0 NOT NULL,
"level" INTEGER DEFAULT 0 NOT NULL,
"mid" INTEGER,
PRIMARY KEY ("id"),
CONSTRAINT "cc_smemb_id_idx" UNIQUE ("id")
);