Finished upgrade to schema for entity upgrade
This commit is contained in:
parent
cca27b5475
commit
2594d826ef
11 changed files with 1858 additions and 0 deletions
13
share/ddl/SQLite/upgrade/5-6/003-remove-temps.sql
Normal file
13
share/ddl/SQLite/upgrade/5-6/003-remove-temps.sql
Normal file
|
@ -0,0 +1,13 @@
|
|||
-- 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 pending_organisations;
|
||||
DROP TABLE pending_transactions;
|
||||
DROP TABLE administrators;
|
||||
|
||||
COMMIT;
|
Reference in a new issue