## 日结创建索引问题;

This commit is contained in:
cabbage 2025-07-22 13:48:20 +08:00
parent 7768204761
commit 46ece473c8
1 changed files with 8 additions and 28 deletions

View File

@ -386,26 +386,16 @@
</update>
<update id="createCuMemberTreeParentIndex">
create
index
${tableName}
_
parent
on
${tableName}
create index ${tableName}_parent
on ${tableName}
(
pk_parent
)
</update>
<update id="createCuMemberTreePlaceIndex">
create
index
${tableName}
_
place
on
${tableName}
create index ${tableName}_place
on ${tableName}
(
pk_place_parent,
place_dept
@ -413,13 +403,8 @@
</update>
<update id="createCuMemberTableUniqueIndex">
create
unique index
${tableName}
_
PK_M
on
${tableName}
create unique index ${tableName}_PK_M
on ${tableName}
(
PK_MEMBER,
period
@ -427,13 +412,8 @@
</update>
<update id="createCuMemberTreeDayOnlyIndex">
create
unique index
${tableName}
_
PK_M
on
${tableName}
create unique index ${tableName}_PK_M
on ${tableName}
(
PK_MEMBER
)