summaryrefslogtreecommitdiffstats
path: root/db_demo/sql/drop.sql
blob: 4ea9cf79ad570f6f6b2b302c2994cbb0ce04499b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- drop views and functions
\i soft_drop.sql

-- drop sequences (3)
DROP SEQUENCE seq_person;
DROP SEQUENCE seq_test;
DROP SEQUENCE seq_turn;

-- drop user tables (3)
DROP TABLE tbl_turn;
DROP TABLE tbl_test;
DROP TABLE tbl_person;

-- drop constant tables (4)
DROP TABLE const_gametype;
DROP TABLE const_block;
DROP TABLE const_boxsize;
DROP TABLE const_agegroup;