## 日结创建索引问题;
This commit is contained in:
parent
fddcc20d6c
commit
f615003ece
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue