-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
Make EncryptedColumn a struct so we can't accidentally implicitly convert `[]byte` to/from it. As a side-effect, discovered a few columns in the DB that weren't the correct types.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- migrate:up | ||
|
||
ALTER TABLE fsm_next_event | ||
ALTER COLUMN request TYPE encrypted_async; | ||
|
||
-- migrate:down |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- migrate:up | ||
|
||
ALTER TABLE topic_events | ||
ALTER COLUMN payload TYPE encrypted_async; | ||
|
||
-- migrate:down |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.