Separate agreement info into its own table

선택약관 동의 내역을 쉽게 관리할 수 있도록
확장변수가 아닌 별도의 테이블로 분리
This commit is contained in:
Kijin Sung 2019-09-13 23:46:56 +09:00
parent 73c5b6d84b
commit ee7f11b0f1
5 changed files with 70 additions and 22 deletions

View file

@ -0,0 +1,8 @@
<table name="member_agreed">
<column name="id" type="number" primary_key="primary_key" auto_increment="auto_increment" />
<column name="member_srl" type="number" notnull="notnull" index="idx_member_srl" />
<column name="agreement_sequence" type="number" notnull="notnull" index="idx_agreement_sequence" />
<column name="agreed" type="char" size="1" notnull="notnull" index="idx_agreed" />
<column name="ipaddress" type="varchar" size="80" notnull="notnull" />
<column name="regdate" type="date" notnull="notnull" />
</table>