15 lines
333 B
PL/PgSQL
15 lines
333 B
PL/PgSQL
-- Remove temporary tables created during migration
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE customers_temp;
|
|
DROP TABLE organisations_temp;
|
|
DROP TABLE transactions_temp;
|
|
DROP TABLE users_temp;
|
|
DROP TABLE feedback_temp;
|
|
DROP TABLE session_tokens_temp;
|
|
DROP TABLE pending_organisations;
|
|
DROP TABLE pending_transactions;
|
|
DROP TABLE administrators;
|
|
|
|
COMMIT;
|