Compare commits

..

No commits in common. "622a066e0f76641cd77632810053ae6173bdc1a4" and "7f031633f4e2b52e82023d02649c1aab1f58d38f" have entirely different histories.

1 changed files with 24 additions and 10 deletions

View File

@ -309,8 +309,11 @@
</update> </update>
<update id="createCuMemberTreeParentIndex"> <update id="createCuMemberTreeParentIndex">
create index create
${tableName}_parent index
${tableName}
_
parent
on on
${tableName} ${tableName}
( (
@ -319,8 +322,11 @@
</update> </update>
<update id="createCuMemberTreePlaceIndex"> <update id="createCuMemberTreePlaceIndex">
create index create
${tableName}_place index
${tableName}
_
place
on on
${tableName} ${tableName}
( (
@ -330,9 +336,13 @@
</update> </update>
<update id="createCuMemberTableUniqueIndex"> <update id="createCuMemberTableUniqueIndex">
create unique index create
${tableName}_PK_M unique index
on ${tableName} ${tableName}
_
PK_M
on
${tableName}
( (
PK_MEMBER, PK_MEMBER,
period period
@ -340,9 +350,13 @@
</update> </update>
<update id="createCuMemberTreeDayOnlyIndex"> <update id="createCuMemberTreeDayOnlyIndex">
create unique index create
${tableName}_PK_M unique index
on ${tableName} ${tableName}
_
PK_M
on
${tableName}
( (
PK_MEMBER PK_MEMBER
) )