You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
330 B
11 lines
330 B
<?php
|
|
global $_W;
|
|
pdo_query("CREATE TABLE IF NOT EXISTS " . tablename('wlmerchant_setting') . " (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`uniacid` int(11) NOT NULL,
|
|
`plugin` varchar(200) NOT NULL,
|
|
`key` varchar(64) NOT NULL,
|
|
`value` text NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;");
|
|
?>
|