mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Clean up
This commit is contained in:
parent
3b31830998
commit
e65bbbf508
2 changed files with 2 additions and 2 deletions
|
|
@ -419,7 +419,7 @@ class memberView extends member
|
|||
if(!count($folders))
|
||||
{
|
||||
$output = getController('member')->migrateMemberScrappedDocuments($logged_info->member_srl);
|
||||
if(!$output->toBool())
|
||||
if($output && !$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<table name="member_scrap">
|
||||
<column name="member_srl" type="number" size="11" notnull="notnull" unique="unique_scrap" />
|
||||
<column name="document_srl" type="number" size="11" notnull="notnull" unique="unique_scrap" />
|
||||
<column name="folder_srl" type="number" size="11" index="idx_folder_srl" />
|
||||
<column name="title" type="varchar" size="250" />
|
||||
<column name="user_id" type="varchar" size="80" />
|
||||
<column name="user_name" type="varchar" size="80" notnull="notnull" />
|
||||
<column name="nick_name" type="varchar" size="80" notnull="notnull" />
|
||||
<column name="target_member_srl" type="number" size="11" notnull="notnull" />
|
||||
<column name="folder_srl" type="number" size="11" index="idx_folder_srl" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue