Files
2021-03-13 18:42:01 +08:00

10 lines
260 B
PHP

<?php
$this->E_D("DROP TABLE IF EXISTS `db_notify`;");
$this->E_C("CREATE TABLE `db_notify` (
`id` int(20) NOT NULL,
`res` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8");
$this->E_D("replace into `db_notify` values('0','false');");
?>