mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 21:12:15 +09:00
칼럼 추가시 After_column 을 사용하여 순서대로 정렬하도록 개선
This commit is contained in:
parent
307486dbd9
commit
868808a920
1 changed files with 3 additions and 3 deletions
|
|
@ -235,17 +235,17 @@ class ncenterlite extends ModuleObject
|
||||||
|
|
||||||
if(!$oDB->isColumnExists('ncenterlite_user_set','comment_comment_notify'))
|
if(!$oDB->isColumnExists('ncenterlite_user_set','comment_comment_notify'))
|
||||||
{
|
{
|
||||||
$oDB->addColumn('ncenterlite_user_set', 'comment_comment_notify', 'char', 1, null, true);
|
$oDB->addColumn('ncenterlite_user_set', 'comment_comment_notify', 'char', 1, null, true, 'comment_notify');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$oDB->isColumnExists('ncenterlite_user_set','vote_notify'))
|
if(!$oDB->isColumnExists('ncenterlite_user_set','vote_notify'))
|
||||||
{
|
{
|
||||||
$oDB->addColumn('ncenterlite_user_set', 'vote_notify', 'char', 1, null, true);
|
$oDB->addColumn('ncenterlite_user_set', 'vote_notify', 'char', 1, null, true, 'mention_notify');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$oDB->isColumnExists('ncenterlite_user_set','scrap_notify'))
|
if(!$oDB->isColumnExists('ncenterlite_user_set','scrap_notify'))
|
||||||
{
|
{
|
||||||
$oDB->addColumn('ncenterlite_user_set', 'scrap_notify', 'char', 1, null, true);
|
$oDB->addColumn('ncenterlite_user_set', 'scrap_notify', 'char', 1, null, true, 'vote_notify');
|
||||||
}
|
}
|
||||||
|
|
||||||
$config = getModel('ncenterlite')->getConfig();
|
$config = getModel('ncenterlite')->getConfig();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue