mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-02-19 04:23:36 +00:00
14 lines
226 B
PL/PgSQL
14 lines
226 B
PL/PgSQL
|
|
-- Bleah. Missed another permission.
|
|
|
|
BEGIN;
|
|
SELECT check_db_revision(1,1,2);
|
|
|
|
UPDATE relationship_type SET rt_isgroup = TRUE WHERE rt_id = 3 AND NOT rt_isgroup;
|
|
|
|
SELECT new_db_revision(1,1,3, 'March' );
|
|
|
|
COMMIT;
|
|
ROLLBACK;
|
|
|