summaryrefslogtreecommitdiffstats
path: root/db_demo/sql/soft_drop.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db_demo/sql/soft_drop.sql')
-rw-r--r--db_demo/sql/soft_drop.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/db_demo/sql/soft_drop.sql b/db_demo/sql/soft_drop.sql
new file mode 100644
index 0000000..2a8490c
--- /dev/null
+++ b/db_demo/sql/soft_drop.sql
@@ -0,0 +1,10 @@
+-- drop views (3)
+DROP VIEW vw_turn;
+DROP VIEW vw_test;
+DROP VIEW vw_person;
+
+-- drop functions (4)
+DROP FUNCTION insert_person (boolean, boolean, integer);
+DROP FUNCTION insert_results (boolean, boolean, integer, boolean[], boolean[], boolean[], integer[], time[][], integer[][], integer[][]);
+DROP FUNCTION insert_test (integer, boolean, boolean, boolean, integer);
+DROP FUNCTION insert_turn (integer, time, integer, integer);