You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
280 B
MySQL
9 lines
280 B
MySQL
12 years ago
|
CREATE TABLE IF NOT EXISTS `settings` (
|
||
|
`Id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
|
`Key` varchar(120) NOT NULL,
|
||
|
`Value` text NOT NULL,
|
||
|
`LastChanged` timestamp NULL DEFAULT NULL,
|
||
|
PRIMARY KEY (`Id`),
|
||
|
UNIQUE KEY `Key` (`Key`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|