This commit is contained in:
Paula Quispe
2017-09-18 10:13:01 -04:00
parent 2c2306adbb
commit fb7876acfd
2 changed files with 5 additions and 1 deletions

View File

@@ -349,6 +349,9 @@
<index name="indexForAppUid">
<index-column name="APP_UID"/>
</index>
<index name="indexForMsgStatus">
<index-column name="APP_MSG_STATUS"/>
</index>
</table>
<table name="APP_OWNER">
<vendor type="mysql">

View File

@@ -164,7 +164,8 @@ CREATE TABLE `APP_MESSAGE`
`APP_MSG_SHOW_MESSAGE` TINYINT default 1 NOT NULL,
`APP_MSG_ERROR` MEDIUMTEXT,
PRIMARY KEY (`APP_MSG_UID`),
KEY `indexForAppUid`(`APP_UID`)
KEY `indexForAppUid`(`APP_UID`),
KEY `indexForMsgStatus`(`APP_MSG_STATUS`)
)ENGINE=InnoDB DEFAULT CHARSET='utf8' COMMENT='Messages in an Application';
#-----------------------------------------------------------------------------
#-- APP_OWNER