migration to allow user to delete themseleves

This commit is contained in:
Satindar Dhillon 2022-06-30 08:04:23 -07:00
parent 02f0e22cff
commit 7d7b51500c
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
-- Type: DO
-- Name: grant_delete_on_user_table
-- Description: Allows the Omnivore User to delete themselves (for delete account app feature)
BEGIN;
GRANT DELETE ON omnivore.user TO omnivore_user;
COMMIT;

View file

@ -0,0 +1,9 @@
-- Type: UNDO
-- Name: grant_delete_on_user_table
-- Description: Allows the Omnivore User to delete themselves (for delete account app feature)
BEGIN;
-- do nothing here, there's no reason to undo this migration.
COMMIT;