-
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.
Use golang migrate for database migrations
Signed-off-by: William <[email protected]>
- Loading branch information
Showing
4 changed files
with
15 additions
and
9 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 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,8 @@ | ||
BEGIN; | ||
DROP TABLE IF EXISTS user_refresh_tokens; | ||
DROP TABLE IF EXISTS reset_password_requests; | ||
DROP TABLE IF EXISTS two_factor_requests; | ||
DROP TABLE IF EXISTS user_roles; | ||
DROP TABLE IF EXISTS roles; | ||
DROP TABLE IF EXISTS users; | ||
COMMIT; |
File renamed without changes.