summaryrefslogtreecommitdiff
path: root/server/migrations/20221008120534_init.down.sql
blob: c57e653fb10e31b5d44129d5eca84810c121de74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Add down migration script here
begin;
drop table if exists sessions;
drop table if exists table_players;
drop table if exists table_moves;
drop table if exists table_boards;
drop table if exists object_journal;
drop table if exists bridge_table;
drop table if exists players;
drop type if exists player_position;
drop type if exists suit;
drop domain if exists rank;
commit;