#17417252 sqlite에서 primary_key 2개 이상이 되지 않는 문제로 인하여 설치되지 않던 member_autologin, planet_catch 테이블을 unique_key로 변경후 적용. sqlite설치시 파일 위치를 ./files/xe.sqlite로 기본 값 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5113 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-18 02:33:48 +00:00
parent dc8de63a96
commit 44b12cc562
4 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
<table name="member_autologin">
<column name="autologin_key" type="varchar" size="80" notnull="notnull" primary_key="primary_key" />
<column name="member_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="autologin_key" type="varchar" size="80" notnull="notnull" unique="unique_key" />
<column name="member_srl" type="number" size="11" notnull="notnull" unique="unique_key" />
</table>