Update member queries to add data to phone_number column

This commit is contained in:
Kijin Sung 2017-10-13 17:51:56 +09:00
parent 2c221019e4
commit e47462fb32
3 changed files with 14 additions and 1 deletions

View file

@ -6,6 +6,7 @@
<column name="member_srl" var="member_srl" filter="number" notnull="notnull" />
<column name="user_id" var="user_id" filter="userid" notnull="notnull" />
<column name="email_address" var="email_address" filter="email" notnull="notnull" />
<column name="phone_number" var="phone_number" />
<column name="password" var="password" notnull="notnull" />
<column name="email_id" var="email_id" notnull="notnull" />
<column name="email_host" var="email_host" notnull="notnull" />

View file

@ -7,7 +7,8 @@
<column name="user_name" var="user_name" notnull="notnull" minlength="2" maxlength="40" />
<column name="nick_name" var="nick_name" notnull="notnull" minlength="2" maxlength="40" />
<column name="user_id" var="user_id" notnull="notnull" />
<column name="email_address" var="email_address" notnull="notnull"/>
<column name="email_address" var="email_address" notnull="notnull" />
<column name="phone_number" var="phone_number" />
<column name="email_id" var="email_id" />
<column name="email_host" var="email_host" />
<column name="find_account_question" var="find_account_question" />

View file

@ -0,0 +1,11 @@
<query id="updateMemberPhoneNumber" action="update">
<tables>
<table name="member" />
</tables>
<columns>
<column name="phone_number" var="phone_number" notnull="notnull" />
</columns>
<conditions>
<condition operation="equal" column="member_srl" var="member_srl" notnull="notnull" filter="number" />
</conditions>
</query>