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-sqlserver.sql | |
parent | ed8f4b3397219c3e224504def022e5b3535c6773 (diff) |
Drop unused tables
Diffstat (limited to 'src/main/resources/schema-sqlserver.sql')
-rw-r--r-- | src/main/resources/schema-sqlserver.sql | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/resources/schema-sqlserver.sql b/src/main/resources/schema-sqlserver.sql index 71539577..aafc159d 100644 --- a/src/main/resources/schema-sqlserver.sql +++ b/src/main/resources/schema-sqlserver.sql @@ -87,16 +87,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 bigint, jid character varying(64) NOT NULL, @@ -229,10 +219,6 @@ CREATE TABLE tags_ignore ( tag_id integer 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 bigint, tg_id numeric NOT NULL, |