-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(notifications): add sqlxmq boilerplate
- Loading branch information
1 parent
2280047
commit 7266705
Showing
24 changed files
with
1,069 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
12 changes: 12 additions & 0 deletions
12
core/notifications/migrations/20210316025847_setup.down.sql
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,12 @@ | ||
DROP FUNCTION mq_checkpoint; | ||
DROP FUNCTION mq_keep_alive; | ||
DROP FUNCTION mq_delete; | ||
DROP FUNCTION mq_commit; | ||
DROP FUNCTION mq_insert; | ||
DROP FUNCTION mq_poll; | ||
DROP FUNCTION mq_active_channels; | ||
DROP FUNCTION mq_latest_message; | ||
DROP TABLE mq_payloads; | ||
DROP TABLE mq_msgs; | ||
DROP FUNCTION mq_uuid_exists; | ||
DROP TYPE mq_new_t; |
Oops, something went wrong.