git-svn-id: http://xe-core.googlecode.com/svn/trunk@1228 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-19 04:14:54 +00:00
parent 70d5a362db
commit bf21c5b538
23 changed files with 53 additions and 57 deletions

View file

@ -20,7 +20,6 @@
// action forward에 등록 (관리자 모드에서 사용하기 위함)
$oModuleController = &getController('module');
$oModuleController->insertActionForward('document', 'view', 'dispDocumentAdminList');
//$oModuleController->insertActionForward('document', 'controller', 'procDocumentAdminDeleteChecked');
return new Object();
}

View file

@ -5,6 +5,8 @@
<column name="is_notice" type="char" size="1" default="N" notnull="notnull" index="idx_is_notice" />
<column name="is_secret" type="char" size="1" default="N" notnull="notnull" index="idx_is_secret" />
<column name="title" type="varchar" size="250" />
<column name="title_bold" type="char" size="1" default="N" notnull="notnull" />
<column name="title_color" type="char" size="7" />
<column name="content" type="bigtext" notnull="notnull" />
<column name="readed_count" type="number" size="11" default="0" notnull="notnull" index="idx_readed_count" />
<column name="voted_count" type="number" size="11" default="0" notnull="notnull" index="idx_voted_count" />
@ -21,6 +23,7 @@
<column name="tags" type="text" />
<column name="regdate" type="date" index="idx_regdate " />
<column name="last_update" type="date" index="idx_last_update" />
<column name="last_updater" type="varchar" size="80" />
<column name="ipaddress" type="varchar" size="128" notnull="notnull" index="idx_ipaddress"/>
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
<column name="update_order" type="number" size="11" notnull="notnull" index="idx_update_order" />