Add 'phone_number' column to member table

This commit is contained in:
Kijin Sung 2017-10-13 17:47:59 +09:00
parent 91550131ac
commit 2c221019e4
2 changed files with 13 additions and 1 deletions

View file

@ -1,7 +1,8 @@
<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="email_address" type="varchar" size="80" notnull="notnull" unique="unique_email_address" />
<column name="phone_number" type="varchar" size="80" index="idx_phone_number" />
<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" />