mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 23:03:25 +09:00
Remove duplicate index in ncenterlite module
This commit is contained in:
parent
d8ea756244
commit
b6c56dd14c
1 changed files with 9 additions and 7 deletions
|
|
@ -124,12 +124,13 @@ class ncenterlite extends ModuleObject
|
|||
return true;
|
||||
}
|
||||
|
||||
if(!$oDB->isIndexExists('ncenterlite_notify', 'idx_notify'))
|
||||
if(!$oDB->isIndexExists('ncenterlite_notify', 'idx_target_member_srl'))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if(!$oDB->isIndexExists('ncenterlite_notify', 'idx_target_member_srl'))
|
||||
// PK duplicate
|
||||
if($oDB->isIndexExists('ncenterlite_notify', 'idx_notify'))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
@ -202,16 +203,17 @@ class ncenterlite extends ModuleObject
|
|||
$oDB->addIndex('ncenterlite_notify', 'idx_target_p_srl', array('target_p_srl'));
|
||||
}
|
||||
|
||||
if(!$oDB->isIndexExists('ncenterlite_notify', 'idx_notify'))
|
||||
{
|
||||
$oDB->addIndex('ncenterlite_notify', 'idx_notify', array('notify'));
|
||||
}
|
||||
|
||||
if(!$oDB->isIndexExists('ncenterlite_notify', 'idx_target_member_srl'))
|
||||
{
|
||||
$oDB->addIndex('ncenterlite_notify', 'idx_target_member_srl', array('target_member_srl'));
|
||||
}
|
||||
|
||||
// PK duplicate
|
||||
if($oDB->isIndexExists('ncenterlite_notify', 'idx_notify'))
|
||||
{
|
||||
$oDB->dropIndex('ncenterlite_notify', 'idx_notify');
|
||||
}
|
||||
|
||||
return new Object(0, 'success_updated');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue