mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
841 B
38 lines
841 B
4 years ago
|
-- Drop Views
|
||
|
|
||
|
DROP VIEW customer_list;
|
||
|
DROP VIEW film_list;
|
||
|
DROP VIEW nicer_but_slower_film_list;
|
||
|
DROP VIEW sales_by_film_category;
|
||
|
DROP VIEW sales_by_store;
|
||
|
DROP VIEW staff_list;
|
||
|
|
||
|
-- Drop Tables
|
||
|
|
||
|
DROP TABLE payment;
|
||
|
DROP TABLE rental;
|
||
|
DROP TABLE inventory;
|
||
|
DROP TABLE film_text;
|
||
|
DROP TABLE film_category;
|
||
|
DROP TABLE film_actor;
|
||
|
DROP TABLE film;
|
||
|
DROP TABLE language;
|
||
|
DROP TABLE customer;
|
||
|
DROP TABLE actor;
|
||
|
DROP TABLE category;
|
||
|
ALTER TABLE staff DROP FOREIGN KEY fk_staff_store , DROP FOREIGN KEY fk_staff_address;
|
||
|
DROP TABLE store;
|
||
|
DROP TABLE address;
|
||
|
DROP TABLE staff;
|
||
|
DROP TABLE city;
|
||
|
DROP TABLE country;
|
||
|
|
||
|
-- Procedures and views
|
||
|
drop procedure film_in_stock;
|
||
|
drop procedure film_not_in_stock;
|
||
|
drop function get_customer_balance;
|
||
|
drop function inventory_held_by_customer;
|
||
|
drop function inventory_in_stock;
|
||
|
drop procedure rewards_report;
|
||
|
|