summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-10-06 22:05:27 +0200
committerTor Andersson <tor@ccxvii.net>2024-10-07 22:08:28 +0200
commitd20bbfd29be7c35406d6852c83a00ab5f2d18ede (patch)
treef7b6974eb7430ad27e13f76e8633bff55acd7c12 /schema.sql
parent036babec3e9f93822b808a7a62dcf9485ddf3307 (diff)
downloadserver-d20bbfd29be7c35406d6852c83a00ab5f2d18ede.tar.gz
Zap "setups" table.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql10
1 files changed, 0 insertions, 10 deletions
diff --git a/schema.sql b/schema.sql
index 3ba249b..751d423 100644
--- a/schema.sql
+++ b/schema.sql
@@ -196,16 +196,6 @@ create view player_rating_view as
left join ratings using(title_id, user_id)
;
-create table if not exists setups (
- setup_id integer primary key,
- setup_name text,
- title_id text,
- player_count integer,
- scenario text,
- options text,
- unique (title_id, player_count, scenario)
-);
-
-- Friend and Block Lists --
create table if not exists contacts (