-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix #137: Error in after.sql * Use the original table names from 1.1.0 * mobile_app * mobile_ssl_pinning * Describe manual import Co-authored-by: Zdeněk Černý <[email protected]> * Creating First Admin User * Split migration and cleanup script --------- Co-authored-by: Zdeněk Černý <[email protected]>
- Loading branch information
1 parent
2bbfe64
commit fa59987
Showing
8 changed files
with
121 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Drop old tables | ||
DROP TABLE mobile_ssl_pinning CASCADE CONSTRAINTS; | ||
DROP TABLE mobile_app CASCADE CONSTRAINTS; | ||
|
||
-- Drop old sequences | ||
DROP SEQUENCE mobile_ssl_pinning_seq; | ||
DROP SEQUENCE mobile_app_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Migrate data | ||
-- TABLES | ||
|
||
-- For table mobile_app | ||
INSERT INTO mus_mobile_app SELECT * FROM mobile_app; | ||
|
||
-- There is no migration for table certificate |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Drop old tables | ||
DROP TABLE mobile_ssl_pinning CASCADE; | ||
DROP TABLE mobile_app CASCADE; | ||
|
||
-- Drop old sequences | ||
DROP SEQUENCE mobile_ssl_pinning_seq CASCADE; | ||
DROP SEQUENCE mobile_app_seq CASCADE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Migrate data | ||
-- TABLES | ||
|
||
-- For table mobile_app | ||
INSERT INTO mus_mobile_app SELECT * FROM mobile_app; | ||
|
||
-- There is no migration for table certificate |
This file was deleted.
Oops, something went wrong.