mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add digest_config column to the user_personalization table
This commit is contained in:
parent
2e4833d68c
commit
6592ac6a86
2 changed files with 18 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
-- Type: DO
|
||||
-- Name: add_digest_config_to_user_personalization
|
||||
-- Description: Add digest_config json column to the user_personalization table
|
||||
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE omnivore.user_personalization ADD COLUMN digest_config jsonb;
|
||||
|
||||
COMMIT;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
-- Type: UNDO
|
||||
-- Name: add_digest_config_to_user_personalization
|
||||
-- Description: Add digest_config json column to the user_personalization table
|
||||
|
||||
BEGIN;
|
||||
|
||||
ALTER TABLE omnivore.user_personalization DROP COLUMN digest_config;
|
||||
|
||||
COMMIT;
|
||||
Loading…
Reference in a new issue