Revision ab56c1a0
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/CustomVariableConfig.pm | ||
---|---|---|
11 | 11 |
|
12 | 12 |
columns => [ |
13 | 13 |
id => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' }, |
14 |
name => { type => 'text' }, |
|
15 |
description => { type => 'text' }, |
|
16 |
type => { type => 'varchar', length => 20 },
|
|
17 |
module => { type => 'varchar', length => 20 },
|
|
14 |
name => { type => 'text', not_null => 1 },
|
|
15 |
description => { type => 'text', not_null => 1 },
|
|
16 |
type => { type => 'text', not_null => 1 },
|
|
17 |
module => { type => 'text', not_null => 1 },
|
|
18 | 18 |
default_value => { type => 'text' }, |
19 | 19 |
options => { type => 'text' }, |
20 |
searchable => { type => 'boolean' }, |
|
21 |
includeable => { type => 'boolean' }, |
|
22 |
included_by_default => { type => 'boolean' }, |
|
23 |
sortkey => { type => 'integer' }, |
|
20 |
searchable => { type => 'boolean', not_null => 1 },
|
|
21 |
includeable => { type => 'boolean', not_null => 1 },
|
|
22 |
included_by_default => { type => 'boolean', not_null => 1 },
|
|
23 |
sortkey => { type => 'integer', not_null => 1 },
|
|
24 | 24 |
itime => { type => 'timestamp', default => 'now()' }, |
25 | 25 |
mtime => { type => 'timestamp' }, |
26 | 26 |
flags => { type => 'text' }, |
Auch abrufbar als: Unified diff
Spaltentyp "custom_variable_configs.type" und ".module" auf TEXT geändert