Compare commits
No commits in common. "622a066e0f76641cd77632810053ae6173bdc1a4" and "7f031633f4e2b52e82023d02649c1aab1f58d38f" have entirely different histories.
622a066e0f
...
7f031633f4
|
|
@ -309,8 +309,11 @@
|
|||
</update>
|
||||
|
||||
<update id="createCuMemberTreeParentIndex">
|
||||
create index
|
||||
${tableName}_parent
|
||||
create
|
||||
index
|
||||
${tableName}
|
||||
_
|
||||
parent
|
||||
on
|
||||
${tableName}
|
||||
(
|
||||
|
|
@ -319,8 +322,11 @@
|
|||
</update>
|
||||
|
||||
<update id="createCuMemberTreePlaceIndex">
|
||||
create index
|
||||
${tableName}_place
|
||||
create
|
||||
index
|
||||
${tableName}
|
||||
_
|
||||
place
|
||||
on
|
||||
${tableName}
|
||||
(
|
||||
|
|
@ -330,9 +336,13 @@
|
|||
</update>
|
||||
|
||||
<update id="createCuMemberTableUniqueIndex">
|
||||
create unique index
|
||||
${tableName}_PK_M
|
||||
on ${tableName}
|
||||
create
|
||||
unique index
|
||||
${tableName}
|
||||
_
|
||||
PK_M
|
||||
on
|
||||
${tableName}
|
||||
(
|
||||
PK_MEMBER,
|
||||
period
|
||||
|
|
@ -340,9 +350,13 @@
|
|||
</update>
|
||||
|
||||
<update id="createCuMemberTreeDayOnlyIndex">
|
||||
create unique index
|
||||
${tableName}_PK_M
|
||||
on ${tableName}
|
||||
create
|
||||
unique index
|
||||
${tableName}
|
||||
_
|
||||
PK_M
|
||||
on
|
||||
${tableName}
|
||||
(
|
||||
PK_MEMBER
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue