mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
#18961156 : added mcontent for page module
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7541 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6fe6168859
commit
a9a2ac6c4f
2 changed files with 5 additions and 0 deletions
|
|
@ -76,6 +76,7 @@
|
|||
|
||||
if(!$oDB->isColumnExists("modules", "use_mobile")) return true;
|
||||
if(!$oDB->isColumnExists("modules", "mlayout_srl")) return true;
|
||||
if(!$oDB->isColumnExists("modules", "mcontent")) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
@ -307,6 +308,9 @@
|
|||
if(!$oDB->isColumnExists("modules", "mlayout_srl")) {
|
||||
$oDB->addColumn('modules','mlayout_srl','number',11, 0);
|
||||
}
|
||||
if(!$oDB->isColumnExists("modules", "mcontent")) {
|
||||
$oDB->addColumn('modules','mcontent','bigtext');
|
||||
}
|
||||
|
||||
return new Object(0, 'success_updated');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<column name="description" type="text" />
|
||||
<column name="is_default" type="char" size="1" notnull="notnull" default="N" />
|
||||
<column name="content" type="bigtext" />
|
||||
<column name="mcontent" type="bigtext" />
|
||||
<column name="open_rss" type="char" size="1" notnull="notnull" default="Y" />
|
||||
<column name="header_text" type="text" />
|
||||
<column name="footer_text" type="text" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue