mirror of https://github.com/midoks/mdserver-web
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.
17 lines
371 B
17 lines
371 B
CREATE TABLE IF NOT EXISTS `config` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
`mysql_root` TEXT
|
|
);
|
|
|
|
INSERT INTO `config` (`id`, `mysql_root`) VALUES (1, 'admin');
|
|
|
|
CREATE TABLE IF NOT EXISTS `databases` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
`pid` INTEGER,
|
|
`name` TEXT,
|
|
`username` TEXT,
|
|
`password` TEXT,
|
|
`accept` TEXT,
|
|
`ps` TEXT,
|
|
`addtime` TEXT
|
|
);
|
|
|