Compare commits

..

2 Commits

Author SHA1 Message Date
cabbage 622a066e0f Merge remote-tracking branch 'origin/dev' into dev 2025-06-11 11:05:29 +08:00
cabbage 438f4b2cf3 ## 调整生成奖金索引; 2025-06-11 11:05:25 +08:00
1 changed files with 10 additions and 24 deletions

View File

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