mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
17 lines
209 B
PL/PgSQL
17 lines
209 B
PL/PgSQL
|
|
-- Bleah. Missed another permission.
|
|
|
|
BEGIN;
|
|
SELECT check_db_revision(1,1,1);
|
|
|
|
GRANT DELETE ON
|
|
tmp_password
|
|
, role_member
|
|
TO general;
|
|
|
|
SELECT new_db_revision(1,1,2, 'February' );
|
|
|
|
COMMIT;
|
|
ROLLBACK;
|
|
|