blob: 50ba511f718df99589e10e8c70aca05b157e2a07 (
plain)
1
2
3
4
5
6
7
8
9
|
-- Add down migration script here
begin;
drop table if exists sessions;
drop table if exists table_players;
drop table if exists object_journal;
drop table if exists active_tables;
drop table if exists players;
drop type if exists player_position;
commit;
|