diff options
author | Vitaly Takmazov | 2023-02-03 00:31:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-02-03 03:39:43 +0300 |
commit | 17aa96df5776812e2b2fb212b071a821685c9598 (patch) | |
tree | fd26d5fc9a961d88d64bc5a8cab1669e5b6bd7d1 /src/main/resources/schema-sqlite.sql | |
parent | ed8f4b3397219c3e224504def022e5b3535c6773 (diff) |
Drop unused tables
Diffstat (limited to 'src/main/resources/schema-sqlite.sql')
-rw-r--r-- | src/main/resources/schema-sqlite.sql | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/resources/schema-sqlite.sql b/src/main/resources/schema-sqlite.sql index 39895b2e..9037aef0 100644 --- a/src/main/resources/schema-sqlite.sql +++ b/src/main/resources/schema-sqlite.sql @@ -61,16 +61,6 @@ CREATE TABLE followers ( PRIMARY KEY (user_id) FOREIGN KEY (user_id) REFERENCES users(id) ); -CREATE TABLE images ( - mid bigint NOT NULL, - rid bigint NOT NULL, - thumb bigint NOT NULL, - small bigint NOT NULL, - medium bigint NOT NULL, - height bigint NOT NULL, - width bigint NOT NULL, - PRIMARY KEY (mid, rid) -); CREATE TABLE jids ( user_id INTEGER, jid character varying(64) NOT NULL, @@ -213,10 +203,6 @@ CREATE TABLE tags_ignore ( tag_id bigint NOT NULL, FOREIGN KEY (tag_id) REFERENCES tags(tag_id) ); -CREATE TABLE tags_synonyms ( - name character varying(64) NOT NULL, - changeto character varying(64) NOT NULL -); CREATE TABLE telegram ( user_id INTEGER, tg_id numeric NOT NULL, |