BUG 0000 Case notes Index added and some changes to message body
Index for AppNotes table Conflicts: workflow/engine/classes/model/AppNotes.php
This commit is contained in:
@@ -3014,3 +3014,7 @@ CREATE TABLE [APP_NOTES]
|
||||
[NOTE_AFFECTED_OBJ2] VARCHAR(32) default '' NOT NULL,
|
||||
[NOTE_RECIPIENTS] NVARCHAR(MAX) NULL
|
||||
);
|
||||
|
||||
CREATE INDEX [indexAppNotesDate] ON [APP_NOTES] ([APP_UID],[NOTE_DATE]);
|
||||
|
||||
CREATE INDEX [indexAppNotesUser] ON [APP_NOTES] ([APP_UID],[USR_UID]);
|
||||
|
||||
@@ -1351,7 +1351,9 @@ CREATE TABLE `APP_NOTES`
|
||||
`NOTE_ORIGIN_OBJ` VARCHAR(32) default '',
|
||||
`NOTE_AFFECTED_OBJ1` VARCHAR(32) default '',
|
||||
`NOTE_AFFECTED_OBJ2` VARCHAR(32) default '' NOT NULL,
|
||||
`NOTE_RECIPIENTS` MEDIUMTEXT
|
||||
`NOTE_RECIPIENTS` MEDIUMTEXT,
|
||||
KEY `indexAppNotesDate`(`APP_UID`, `NOTE_DATE`),
|
||||
KEY `indexAppNotesUser`(`APP_UID`, `USR_UID`)
|
||||
)ENGINE=MyISAM DEFAULT CHARSET='utf8' COMMENT='Application Notes';
|
||||
# This restores the fkey checks, after having unset them earlier
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
||||
Reference in New Issue
Block a user