mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-01 03:39:20 +02:00
Update 33.php
This commit is contained in:
parent
dfd78b9735
commit
6035d05d65
@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
if(!$db->hasTable(TABLE_PREFIX . 'settings')) {
|
||||||
|
$db->exec("CREATE TABLE `" . TABLE_PREFIX . "settings`
|
||||||
|
(
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`plugin_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||||
|
`key` VARCHAR(255) NOT NULL DEFAULT '',
|
||||||
|
`value` TEXT NOT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
KEY `key` (`key`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;");
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user