git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-12 03:59:52 +00:00
commit 8326004cb2
2773 changed files with 91485 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<table name="member">
<column name="member_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="user_id" type="varchar" size="80" notnull="notnull" unique="unique_user_id" />
<column name="email_address" type="varchar" size="250" notnull="notnull" unique="unique_email_address" />
<column name="password" type="varchar" size="60" notnull="notnull" />
<column name="email_id" type="varchar" size="80" notnull="notnull" />
<column name="email_host" type="varchar" size="160" index="idx_email_host" />
<column name="user_name" type="varchar" size="40" notnull="notnull"/>
<column name="nick_name" type="varchar" size="40" notnull="notnull" unique="unique_nick_name"/>
<column name="homepage" type="varchar" size="250" />
<column name="blog" type="varchar" size="250" />
<column name="birthday" type="char" size="8" />
<column name="allow_mailing" type="char" size="1" default="Y" notnull="notnull" index="idx_allow_mailing" />
<column name="allow_message" type="char" size="1" default="Y" notnull="notnull" />
<column name="denied" type="char" size="1" default="N" index="idx_is_denied" />
<column name="limit_date" type="date" />
<column name="regdate" type="date" index="idx_regdate" />
<column name="last_login" type="date" index="idx_last_login" />
<column name="is_admin" type="char" size="1" default="N" index="idx_is_admin" />
<column name="description" type="text" />
<column name="extra_vars" type="text" />
</table>

View file

@ -0,0 +1,6 @@
<table name="member_denied_user_id">
<column name="user_id" type="varchar" size="80" notnull="notnull" primary_key="primary_key" />
<column name="regdate" type="date" />
<column name="description" type="text" />
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
</table>

View file

@ -0,0 +1,8 @@
<table name="member_friend">
<column name="friend_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="friend_group_srl" type="number" size="11" default="0" notnull="notnull" index="idx_friend_group_srl" />
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_member_srl" />
<column name="target_srl" type="number" size="11" notnull="notnull" index="idx_target_srl" />
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
<column name="regdate" type="date" />
</table>

View file

@ -0,0 +1,7 @@
<table name="member_friend_group">
<column name="friend_group_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="member_srl" type="number" size="11" notnull="notnull" index="index_owner_member_srl" />
<column name="title" type="varchar" size="250" notnull="notnull" />
<column name="regdate" type="date" />
</table>

View file

@ -0,0 +1,8 @@
<table name="member_group">
<column name="group_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="title" type="varchar" size="80" notnull="notnull" unique="uni_member_group_title" />
<column name="regdate" type="date" />
<column name="is_default" type="char" default="N" />
<column name="is_admin" type="char" default="N" />
<column name="description" type="text" />
</table>

View file

@ -0,0 +1,5 @@
<table name="member_group_member">
<column name="group_srl" type="number" size="11" notnull="notnull" index="idx_group_member" />
<column name="member_srl" type="number" size="11" notnull="notnull" index="idx_group_member" />
<column name="regdate" type="date" />
</table>

View file

@ -0,0 +1,12 @@
<table name="member_join_form">
<column name="member_join_form_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="column_type" type="varchar" size="60" notnull="notnull" />
<column name="column_name" type="varchar" size="60" notnull="notnull" />
<column name="column_title" type="varchar" size="60" notnull="notnull" />
<column name="required" type="char" size="1" default="N" notnull="notnull" />
<column name="default_value" type="text" />
<column name="is_active" type="char" size="1" default="Y" />
<column name="description" type="text" />
<column name="list_order" type="number" size="11" notnull="notnull" default="1" index="idx_list_order" />
<column name="regdate" type="date" />
</table>

View file

@ -0,0 +1,13 @@
<table name="member_message">
<column name="message_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="related_srl" type="number" size="11" notnull="notnull" index="idx_related_srl" />
<column name="sender_srl" type="number" size="11" notnull="notnull" index="idx_sender_srl" />
<column name="receiver_srl" type="number" size="11" notnull="notnull" index="idx_receiver_srl" />
<column name="message_type" type="char" size="1" default="S" notnull="notnull" />
<column name="title" type="varchar" size="250" notnull="notnull" />
<column name="content" type="text" notnull="notnull" />
<column name="readed" type="char" size="1" default="N" notnull="notnull" />
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
<column name="regdate" type="date" />
<column name="readed_date" type="date" />
</table>

View file

@ -0,0 +1,11 @@
<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="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="regdate" type="date" index="idx_regdate" />
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
</table>