2024-03-10 01:23:52 +00:00
|
|
|
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;
|
2024-03-10 20:02:25 +00:00
|
|
|
drop trigger if exists update_customers_updated_at;
|
2024-03-10 01:23:52 +00:00
|
|
|
|
|
|
|
drop table if exists invitations;
|
|
|
|
drop index if exists invitations_owner_dex;
|
2024-03-10 20:02:25 +00:00
|
|
|
drop trigger if exists update_invitations_updated_at;
|
2024-03-10 01:23:52 +00:00
|
|
|
|