Fixed database schema
The answer fields in Questions are now NULL by default. The previous defaults would not fullfill the forein key contraints on line 493 of install.sql and thus the creation of new (yet unanswered) questions was not possible.
This commit is contained in:
parent
4516cbe5d6
commit
48c8ddaa44
|
@ -288,8 +288,8 @@ CREATE TABLE IF NOT EXISTS `Questions` (
|
||||||
`QID` bigint(20) NOT NULL AUTO_INCREMENT,
|
`QID` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||||
`UID` int(11) NOT NULL DEFAULT '0',
|
`UID` int(11) NOT NULL DEFAULT '0',
|
||||||
`Question` text NOT NULL,
|
`Question` text NOT NULL,
|
||||||
`AID` int(11) NOT NULL DEFAULT '0',
|
`AID` int(11) DEFAULT NULL,
|
||||||
`Answer` text NOT NULL,
|
`Answer` text,
|
||||||
PRIMARY KEY (`QID`),
|
PRIMARY KEY (`QID`),
|
||||||
KEY `UID` (`UID`),
|
KEY `UID` (`UID`),
|
||||||
KEY `AID` (`AID`)
|
KEY `AID` (`AID`)
|
||||||
|
|
Loading…
Reference in New Issue