Fix #1778 support multi-column unique indexes using legacy syntax

This commit is contained in:
Kijin Sung 2021-08-26 00:44:00 +09:00
parent 7367ad2645
commit f7146a4791
3 changed files with 7 additions and 4 deletions

View file

@ -6,8 +6,8 @@
<column name="description" type="bigtext" />
<column name="geometry" type="multipolygon" />
<column name="status" type="varchar" size="20" default="PUBLIC" />
<column name="custom_date" type="\date" notnull="notnull" />
<column name="regdate" type="date" notnull="notnull" />
<column name="custom_date" type="\date" notnull="notnull" unique="unique_dates" />
<column name="regdate" type="date" notnull="notnull" unique="unique_dates" />
<column name="list_order" type="number" notnull="notnull" />
<index name="idx_module_document_srl" columns="module_srl,document_srl" />
<index name="idx_status" columns="status(6)" />