Add settings table to database
parent
a397ecafe2
commit
51f93782ae
@ -0,0 +1,8 @@
|
|||||||
|
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;
|
Loading…
Reference in New Issue