10 lines
203 B
PL/PgSQL
Executable File
10 lines
203 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: grant_update_on_newsletter_emails
|
|
-- Description: Grant update permission on newsletter_emails table
|
|
|
|
BEGIN;
|
|
|
|
-- do nothing here, there's no reason to undo this migration
|
|
|
|
COMMIT;
|