|
Lines 6677-6683
DROP TABLE IF EXISTS `systempreferences`;
Link Here
|
| 6677 |
/*!40101 SET character_set_client = utf8mb4 */; |
6677 |
/*!40101 SET character_set_client = utf8mb4 */; |
| 6678 |
CREATE TABLE `systempreferences` ( |
6678 |
CREATE TABLE `systempreferences` ( |
| 6679 |
`variable` varchar(50) NOT NULL DEFAULT '' COMMENT 'system preference name', |
6679 |
`variable` varchar(50) NOT NULL DEFAULT '' COMMENT 'system preference name', |
| 6680 |
`value` mediumtext NOT NULL DEFAULT '' COMMENT 'system preference values', |
6680 |
`value` mediumtext NOT NULL COMMENT 'system preference values', |
| 6681 |
`options` longtext DEFAULT NULL COMMENT 'options for multiple choice system preferences', |
6681 |
`options` longtext DEFAULT NULL COMMENT 'options for multiple choice system preferences', |
| 6682 |
`explanation` mediumtext DEFAULT NULL COMMENT 'descriptive text for the system preference', |
6682 |
`explanation` mediumtext DEFAULT NULL COMMENT 'descriptive text for the system preference', |
| 6683 |
`type` varchar(20) DEFAULT NULL COMMENT 'type of question this preference asks (multiple choice, plain text, yes or no, etc)', |
6683 |
`type` varchar(20) DEFAULT NULL COMMENT 'type of question this preference asks (multiple choice, plain text, yes or no, etc)', |
| 6684 |
- |
|
|