mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
Update member queries to add data to phone_number column
This commit is contained in:
parent
2c221019e4
commit
e47462fb32
3 changed files with 14 additions and 1 deletions
|
|
@ -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" />
|
||||
|
|
|
|||
|
|
@ -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" />
|
||||
|
|
|
|||
11
modules/member/queries/updateMemberPhoneNumber.xml
Normal file
11
modules/member/queries/updateMemberPhoneNumber.xml
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue