Separate default value from options in member extra vars, too

This commit is contained in:
Kijin Sung 2025-06-14 12:16:31 +09:00
parent 4b2cc8c9cf
commit c949e797b0
11 changed files with 92 additions and 44 deletions

View file

@ -5,6 +5,7 @@
<column name="column_title" type="varchar" size="60" notnull="notnull" />
<column name="required" type="char" size="1" default="N" notnull="notnull" />
<column name="default_value" type="text" />
<column name="options" type="text" />
<column name="is_active" type="char" size="1" default="Y" />
<column name="description" type="text" />
<column name="list_order" type="number" size="11" notnull="notnull" default="1" index="idx_list_order" />