OwlCyberSecurity - MANAGER
Edit File: upgrade_from_33_to_34.sql
---- -- Copyright (c) 2012-2017 Apple Inc. All rights reserved. -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ---- --------------------------------------------------- -- Upgrade database schema from VERSION 33 to 34 -- --------------------------------------------------- -- New tables create table SCHEDULE_REFRESH_WORK ( "WORK_ID" integer primary key not null, "NOT_BEFORE" timestamp default CURRENT_TIMESTAMP at time zone 'UTC', "ICALENDAR_UID" nvarchar2(255), "HOME_RESOURCE_ID" integer not null references CALENDAR_HOME on delete cascade, "RESOURCE_ID" integer not null references CALENDAR_OBJECT on delete cascade, "ATTENDEE_COUNT" integer ); create index SCHEDULE_REFRESH_WORK_26084c7b on SCHEDULE_REFRESH_WORK ( HOME_RESOURCE_ID ); create index SCHEDULE_REFRESH_WORK_989efe54 on SCHEDULE_REFRESH_WORK ( RESOURCE_ID ); create table SCHEDULE_REFRESH_ATTENDEES ( "RESOURCE_ID" integer not null references CALENDAR_OBJECT on delete cascade, "ATTENDEE" nvarchar2(255) ); create index SCHEDULE_REFRESH_ATTE_83053b91 on SCHEDULE_REFRESH_ATTENDEES ( RESOURCE_ID, ATTENDEE ); create table SCHEDULE_AUTO_REPLY_WORK ( "WORK_ID" integer primary key not null, "NOT_BEFORE" timestamp default CURRENT_TIMESTAMP at time zone 'UTC', "ICALENDAR_UID" nvarchar2(255), "HOME_RESOURCE_ID" integer not null references CALENDAR_HOME on delete cascade, "RESOURCE_ID" integer not null references CALENDAR_OBJECT on delete cascade, "PARTSTAT" nvarchar2(255) ); create index SCHEDULE_AUTO_REPLY_W_0256478d on SCHEDULE_AUTO_REPLY_WORK ( HOME_RESOURCE_ID ); create index SCHEDULE_AUTO_REPLY_W_0755e754 on SCHEDULE_AUTO_REPLY_WORK ( RESOURCE_ID ); create table SCHEDULE_ORGANIZER_WORK ( "WORK_ID" integer primary key not null, "NOT_BEFORE" timestamp default CURRENT_TIMESTAMP at time zone 'UTC', "ICALENDAR_UID" nvarchar2(255), "SCHEDULE_ACTION" integer not null, "HOME_RESOURCE_ID" integer not null references CALENDAR_HOME on delete cascade, "RESOURCE_ID" integer, "ICALENDAR_TEXT_OLD" nclob, "ICALENDAR_TEXT_NEW" nclob, "ATTENDEE_COUNT" integer, "SMART_MERGE" integer ); create index SCHEDULE_ORGANIZER_WO_18ce4edd on SCHEDULE_ORGANIZER_WORK ( HOME_RESOURCE_ID ); create index SCHEDULE_ORGANIZER_WO_14702035 on SCHEDULE_ORGANIZER_WORK ( RESOURCE_ID ); create table SCHEDULE_ACTION ( "ID" integer primary key, "DESCRIPTION" nvarchar2(16) unique ); insert into SCHEDULE_ACTION (DESCRIPTION, ID) values ('create', 0); insert into SCHEDULE_ACTION (DESCRIPTION, ID) values ('modify', 1); insert into SCHEDULE_ACTION (DESCRIPTION, ID) values ('modify-cancelled', 2); insert into SCHEDULE_ACTION (DESCRIPTION, ID) values ('remove', 3); create table SCHEDULE_REPLY_WORK ( "WORK_ID" integer primary key not null, "NOT_BEFORE" timestamp default CURRENT_TIMESTAMP at time zone 'UTC', "ICALENDAR_UID" nvarchar2(255), "HOME_RESOURCE_ID" integer not null references CALENDAR_HOME on delete cascade, "RESOURCE_ID" integer not null references CALENDAR_OBJECT on delete cascade, "CHANGED_RIDS" nclob ); create index SCHEDULE_REPLY_WORK_H_745af8cf on SCHEDULE_REPLY_WORK ( HOME_RESOURCE_ID ); create index SCHEDULE_REPLY_WORK_R_11bd3fbb on SCHEDULE_REPLY_WORK ( RESOURCE_ID ); create table SCHEDULE_REPLY_CANCEL_WORK ( "WORK_ID" integer primary key not null, "NOT_BEFORE" timestamp default CURRENT_TIMESTAMP at time zone 'UTC', "ICALENDAR_UID" nvarchar2(255), "HOME_RESOURCE_ID" integer not null references CALENDAR_HOME on delete cascade, "ICALENDAR_TEXT" nclob ); create index SCHEDULE_REPLY_CANCEL_dab513ef on SCHEDULE_REPLY_CANCEL_WORK ( HOME_RESOURCE_ID ); -- Now update the version -- No data upgrades update CALENDARSERVER set VALUE = '34' where NAME = 'VERSION';