cs348/Project_3/scripts/drop.sql

21 lines
315 B
MySQL
Raw Permalink Normal View History

2018-11-18 16:15:07 -05:00
set termout off
-- Admin Tables
drop table RolesPrivileges;
drop table Privileges;
drop table UsersRoles;
drop table Roles;
drop table Users;
-- User Tables
drop table Orders;
drop table RetailerInventories;
drop table Products;
drop table Retailers;
drop table Companies;
drop table Customers;
set termout on