#279 이메일을 체크할 때 항상 대소문자 구분 없이 체크하도록 변경

This commit is contained in:
khongchi 2014-01-10 17:05:12 +09:00
parent 07db963a30
commit b3dfb1a051
3 changed files with 25 additions and 3 deletions

View file

@ -0,0 +1,11 @@
<query id="getMemberInfoByEmailAddress" action="select">
<tables>
<table name="member" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="equal" column="lcase(email_address)" var="email_address" notnull="notnull" />
</conditions>
</query>