Patch to database to correct base data for 'Is a member of group'.

This commit is contained in:
Andrew McMillan 2006-10-29 19:50:23 +13:00
parent 40565975ac
commit 5d09ff4bb4
2 changed files with 14 additions and 1 deletions

13
dba/patches/1.1.3.sql Normal file
View File

@ -0,0 +1,13 @@
-- 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;

View File

@ -103,4 +103,4 @@ CREATE TABLE relationship (
);
GRANT SELECT,INSERT,UPDATE,DELETE ON relationship TO general;
SELECT new_db_revision(1,1,1, 'January' );
SELECT new_db_revision(1,1,3, 'March' );