11 lines
354 B
MySQL
11 lines
354 B
MySQL
|
drop table if exists customers;
|
||
|
drop index if exists customers_username_dex;
|
||
|
drop index if exists customers_email_dex;
|
||
|
drop index if exists customers_invitation_dex;
|
||
|
drop trigger if exists update_last_updated_customers;
|
||
|
|
||
|
drop table if exists invitations;
|
||
|
drop index if exists invitations_owner_dex;
|
||
|
drop trigger if exists update_updated_at_invitations;
|
||
|
|