mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-08-24 17:36:39 +00:00
Fixed upgrade patch.
This commit is contained in:
parent
d5bbd52f00
commit
a972fc8439
@ -8,6 +8,16 @@ ALTER TABLE relationship_type DROP COLUMN rt_inverse;
|
||||
ALTER TABLE relationship_type DROP COLUMN prefix_match;
|
||||
ALTER TABLE relationship_type DROP COLUMN rt_isgroup;
|
||||
|
||||
UPDATE relationship_type SET rt_name ='Administers', confers = 'A' WHERE rt_id = 1;
|
||||
UPDATE relationship_type SET rt_name ='is Assistant to', confers = 'RW' WHERE rt_id = 2;
|
||||
UPDATE relationship_type SET rt_name ='Can read from', confers = 'R' WHERE rt_id = 3;
|
||||
UPDATE relationship_type SET rt_name ='Can see free/busy time of', confers = 'F' WHERE rt_id = 4;
|
||||
|
||||
UPDATE relationship SET rt_id=1 WHERE rt_id=4;
|
||||
UPDATE relationship SET rt_id=4 WHERE rt_id=5;
|
||||
|
||||
DELETE FROM relationship_type WHERE rt_id = 5;
|
||||
|
||||
SELECT new_db_revision(1,1,7, 'July' );
|
||||
COMMIT;
|
||||
ROLLBACK;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user