the abconfig defaults weren't changed in the schema files when they were changed in the code
This commit is contained in:
parent
ed0e2b52d7
commit
b6987b4287
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `abconfig` (
|
CREATE TABLE IF NOT EXISTS `abconfig` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`chan` int(10) unsigned NOT NULL DEFAULT '',
|
`chan` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
`xchan` char(255) NOT NULL DEFAULT '',
|
`xchan` char(255) NOT NULL DEFAULT '',
|
||||||
`cat` char(255) NOT NULL DEFAULT '',
|
`cat` char(255) NOT NULL DEFAULT '',
|
||||||
`k` char(255) NOT NULL DEFAULT '',
|
`k` char(255) NOT NULL DEFAULT '',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
CREATE TABLE "abconfig" (
|
CREATE TABLE "abconfig" (
|
||||||
"id" serial NOT NULL,
|
"id" serial NOT NULL,
|
||||||
"chan" bigint NOT NULL,
|
"chan" bigint NOT NULL DEFAULT '0',
|
||||||
"xchan" text NOT NULL,
|
"xchan" text NOT NULL,
|
||||||
"cat" text NOT NULL,
|
"cat" text NOT NULL,
|
||||||
"k" text NOT NULL,
|
"k" text NOT NULL,
|
||||||
|
Reference in New Issue
Block a user