#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

@ -16,7 +16,7 @@
<th rowspan="2" class="hr" scope="row">{$db_type}</th>
<th class="second" scope="row"><label for="textfield11">{$lang->db_database_file}</label></th>
<td>
<input type="text" name="db_database_file" value="../zeroboard_xe.sqlite" class="inputTypeText w100" id="textfield11" />
<input type="text" name="db_database_file" value="./files/xe.sqlite" class="inputTypeText w100" id="textfield11" />
<p>{$lang->about_database_file}</p>
</td>
</tr>

View file

@ -16,7 +16,7 @@
<th rowspan="2" class="hr" scope="row">{$db_type}</th>
<th class="second" scope="row"><label for="textfield11">{$lang->db_database_file}</label></th>
<td>
<input type="text" name="db_database_file" value="../zeroboard_xe.sqlite" class="inputTypeText w100" id="textfield11" />
<input type="text" name="db_database_file" value="./files/xe.sqlite" class="inputTypeText w100" id="textfield11" />
<p>{$lang->about_database_file}</p>
</td>
</tr>

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>

View file

@ -1,6 +1,6 @@
<table name="planet_catch">
<column name="module_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="document_srl" type="number" size="11" notnull="notnull" primary_key="primary_key"/>
<column name="module_srl" type="number" size="11" notnull="notnull" unique="unique_key" />
<column name="document_srl" type="number" size="11" notnull="notnull" unique_key="unique_key"/>
<column name="list_order" type="number" size="11" notnull="notnull" index="idx_list_order" />
<column name="regdate" type="date" notnull="notnull" />
</table>