sites 테이블의 domain 컬럼에 인덱스 제거 및 unique으로 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7115 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2010-01-05 04:55:58 +00:00
parent 7db80f6054
commit 40278bcfa5
2 changed files with 13 additions and 1 deletions

View file

@ -1,7 +1,7 @@
<table name="sites">
<column name="site_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="index_module_srl" type="number" size="11" default="0" />
<column name="domain" type="varchar" size="255" notnull="notnull" index="idx_domain" />
<column name="domain" type="varchar" size="255" notnull="notnull" />
<column name="default_language" type="varchar" size="255" />
<column name="regdate" type="date" />
</table>