summaryrefslogtreecommitdiffstats
path: root/db_demo/sql/drop.sql
blob: 9553629c0be4a6f921078d9c713952152f031e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- drop views (3)
DROP VIEW vw_turn;
DROP VIEW vw_test;
DROP VIEW vw_person;

-- 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;