mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Fix #2335 allow selecting a category as default
This commit is contained in:
parent
d3415b5e01
commit
684b86a636
11 changed files with 106 additions and 29 deletions
|
|
@ -3,12 +3,13 @@
|
|||
<column name="module_srl" type="number" notnull="notnull" index="idx_module_srl" />
|
||||
<column name="parent_srl" type="number" notnull="notnull" />
|
||||
<column name="title" type="varchar" size="250" />
|
||||
<column name="expand" type="char" size="1" default="N" />
|
||||
<column name="document_count" type="number" default="0" notnull="notnull" />
|
||||
<column name="regdate" type="date" index="idx_regdate" />
|
||||
<column name="last_update" type="date" />
|
||||
<column name="list_order" type="number" notnull="notnull" />
|
||||
<column name="description" type="varchar" size="200" />
|
||||
<column name="group_srls" type="text" />
|
||||
<column name="color" type="varchar" size="11" />
|
||||
<column name="description" type="varchar" size="200" />
|
||||
<column name="expand" type="char" size="1" default="N" notnull="notnull" />
|
||||
<column name="is_default" type="char" size="1" default="N" notnull="notnull" />
|
||||
<column name="document_count" type="number" default="0" notnull="notnull" />
|
||||
<column name="regdate" type="date" notnull="notnull" index="idx_regdate" />
|
||||
<column name="last_update" type="date" />
|
||||
<column name="list_order" type="number" notnull="notnull" index="idx_list_order" />
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue