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

This commit is contained in:
zero 2007-02-06 15:11:13 +00:00
parent 2569c554ce
commit c040d4d713
317 changed files with 14496 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<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="image_nick" type="varchar" size="250" />
<column name="image_mark" type="varchar" size="250" />
<column name="profile_image" type="varchar" size="250" />
<column name="signature" type="text" />
<column name="allow_mailing" type="char" size="1" default="Y" idx="idx_allow_mailing" />
<column name="unread_message" type="number" size="11" default="0" />
<column name="denied" type="char" size="1" default="N" />
<column name="regdate" type="date" />
<column name="last_login" type="date" />
<column name="is_admin" type="char" size="1" default="N" />
<column name="level" type="number" size="11" default="1" />
<column name="exp" type="number" size="11" default="0" />
<column name="description" 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,7 @@
<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="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>