summaryrefslogtreecommitdiff
path: root/rt/etc/upgrade/3.3.0/schema.Pg
blob: 427eae7982ef4a28a3006cf0ae27607d675d4088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
alter Table Transactions ADD Column ObjectType varchar(64);
update Transactions set ObjectType = 'RT::Ticket';
ALTER TABLE Transactions ALTER COLUMN ObjectType SET NOT NULL;
alter table Transactions drop column EffectiveTicket;
alter table Transactions add column ReferenceType varchar(255) NULL;
alter table Transactions add column OldReference integer NULL;      
alter table Transactions add column NewReference integer NULL;
drop index transactions1;            
alter table Transactions rename column Ticket to ObjectId;


CREATE INDEX Transactions1 ON Transactions (ObjectType, ObjectId);

alter table TicketCustomFieldValues rename to ObjectCustomFieldValues;

alter table ObjectCustomFieldValues  rename column Ticket to ObjectId;

alter table objectcustomfieldvalues add column ObjectType varchar(255);

update objectcustomfieldvalues set ObjectType = 'RT::Ticket';

ALTER TABLE objectcustomfieldvalues ALTER COLUMN ObjectType SET NOT NULL;

alter table objectcustomfieldvalues add column Current int;

alter table objectcustomfieldvalues alter column Current SET  default 1;  

UPDATE objectcustomfieldvalues SET Current = 1;

alter table objectcustomfieldvalues add column LargeContent TEXT NULL;

alter table objectcustomfieldvalues add column ContentType varchar(80) NULL;

alter table objectcustomfieldvalues add column ContentEncoding varchar(80) NULL;

create index ObjectCustomFieldValues1 on objectcustomfieldvalues (CustomField,ObjectType,ObjectId,Content); 

create index ObjectCustomFieldValues2  on objectcustomfieldvalues (CustomField,ObjectType,ObjectId); 


CREATE SEQUENCE objectcustomfields_id_s;

CREATE TABLE ObjectCustomFields (
  id INTEGER DEFAULT nextval('objectcustomfields_id_s'),
  CustomField integer NOT NULL,
  ObjectId integer NOT NULL,
  SortOrder integer NOT NULL DEFAULT 0  ,

  Creator integer NOT NULL DEFAULT 0  ,
  Created TIMESTAMP NULL  ,
  LastUpdatedBy integer NOT NULL DEFAULT 0  ,
  LastUpdated TIMESTAMP NULL  ,
  PRIMARY KEY (id)

);


INSERT into ObjectCustomFields (CustomField, ObjectId, SortOrder, Creator, LastUpdatedBy) SELECT  id, Queue, SortOrder, Creator, LastUpdatedBy from CustomFields;

alter table CustomFields add column LookupType varchar(255);
alter table CustomFields add column Repeated int2;
alter table CustomFields add column Pattern varchar(255) NULL;
alter table CustomFields add column MaxValues integer;

UPDATE CustomFields SET MaxValues = 0 WHERE Type LIKE '%Multiple';
UPDATE CustomFields SET MaxValues = 1 WHERE Type LIKE '%Single';
UPDATE CustomFields SET Type = 'Select' WHERE Type LIKE 'Select%';
UPDATE CustomFields SET Type = 'Freeform' WHERE Type LIKE 'Freeform%';
UPDATE CustomFields Set LookupType = 'RT::Queue-RT::Ticket';
ALTER TABLE CustomFields ALTER COLUMN LookupType SET NOT NULL;
UPDATE CustomFields Set Repeated = 0;
ALTER TABLE CustomFields ALTER COLUMN Repeated SET DEFAULT 0;
ALTER TABLE CustomFields ALTER COLUMN Repeated SET NOT NULL;
alter table CustomFields drop column Queue;