Correct NOT NULL fields
Ensure all enums are NOT NULL Correct variable name to lowercase
This commit is contained in:
parent
922ae3eaf7
commit
b2ee6ad853
10
install.php
10
install.php
|
@ -211,7 +211,7 @@ function Get_DB_config($sccp_compatible)
|
||||||
// whereas previously they were all global.
|
// whereas previously they were all global.
|
||||||
// By prefixing with an underscore, these fields are ignored by chan-sccp
|
// By prefixing with an underscore, these fields are ignored by chan-sccp
|
||||||
// which is not an issue as they are not "runtime"
|
// which is not an issue as they are not "runtime"
|
||||||
$db_config_V5 = array(
|
$db_config_v5 = array(
|
||||||
'sccpdevice' => array(
|
'sccpdevice' => array(
|
||||||
'_logserver' => array('create' => "varchar(100) NULL default null", 'modify' => "VARCHAR(20)"),
|
'_logserver' => array('create' => "varchar(100) NULL default null", 'modify' => "VARCHAR(20)"),
|
||||||
'_daysdisplaynotactive' => array('create' => "varchar(20) NULL default null", 'modify' => "VARCHAR(20)"),
|
'_daysdisplaynotactive' => array('create' => "varchar(20) NULL default null", 'modify' => "VARCHAR(20)"),
|
||||||
|
@ -225,10 +225,10 @@ function Get_DB_config($sccp_compatible)
|
||||||
'_pcport' => array('create' => "enum('on','off') NOT NULL default 'on'", 'modify' => "enum('on','off')"),
|
'_pcport' => array('create' => "enum('on','off') NOT NULL default 'on'", 'modify' => "enum('on','off')"),
|
||||||
'_spantopcport' => array('create' => "enum('on','off') NOT NULL default 'on'", 'modify' => "enum('on','off')"),
|
'_spantopcport' => array('create' => "enum('on','off') NOT NULL default 'on'", 'modify' => "enum('on','off')"),
|
||||||
'_voicevlanaccess' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
|
'_voicevlanaccess' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
|
||||||
'_enablecdpswport' => array('create' => "enum('on','off') NULL default 'off'", 'modify' => "enum('on','off')"),
|
'_enablecdpswport' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
|
||||||
'_enablecdppcport' => array('create' => "enum('on','off') NULL default 'off'", 'modify' => "enum('on','off')"),
|
'_enablecdppcport' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
|
||||||
'_enablelldpswport' => array('create' => "enum('on','off') NULL default 'off'", 'modify' => "enum('on','off')"),
|
'_enablelldpswport' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
|
||||||
'_enablelldppcport' => array('create' => "enum('on','off') NULL default 'off'", 'modify' => "enum('on','off')")
|
'_enablelldppcport' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue