-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for com.mandrill/message_delayed/jsonschema/1-0-1 (closes #…
…760)
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
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,14 @@ | ||
-- WARNING: only apply this file to your database if the following SQL returns the expected: | ||
-- | ||
-- SELECT pg_catalog.obj_description(c.oid) FROM pg_catalog.pg_class c WHERE c.relname = 'com_mandrill_message_delayed_1'; | ||
-- obj_description | ||
-- ----------------- | ||
-- iglu:com.mandrill/message_delayed/jsonschema/1-0-0 | ||
-- (1 row) | ||
|
||
BEGIN TRANSACTION; | ||
|
||
ALTER TABLE atomic.com_mandrill_message_delayed_1 | ||
ADD COLUMN "msg.subaccount" VARCHAR(255) ENCODE raw; | ||
|
||
END TRANSACTION; |