#201 #9 이메일 인증 시스템 추가.

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2766 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-10-15 07:57:19 +00:00
parent 649805bd3a
commit e2b5b6c2cc
32 changed files with 473 additions and 9 deletions

View file

@ -0,0 +1,12 @@
<query id="insertAuthMail" action="insert">
<tables>
<table name="member_auth_mail" />
</tables>
<columns>
<column name="member_srl" var="member_srl" filter="number" notnull="notnull" />
<column name="user_id" var="user_id" notnull="notnull" />
<column name="auth_key" var="auth_key" notnull="notnull" minlength="1" maxlength="60" />
<column name="new_password" var="new_password" notnull="notnull" minlength="1" maxlength="60" />
<column name="regdate" default="curdate()" />
</columns>
</query>