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.
19 lines
378 B
19 lines
378 B
CREATE TABLE IF NOT EXISTS `config` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
`mg_root` TEXT
|
|
);
|
|
|
|
INSERT INTO `config` (`id`, `mg_root`) VALUES (1, 'mg_root');
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `databases` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
`name` TEXT,
|
|
`username` TEXT,
|
|
`password` TEXT,
|
|
`accept` TEXT,
|
|
`rw` TEXT DEFAULT 'rw',
|
|
`ps` TEXT,
|
|
`addtime` TEXT
|
|
);
|
|
|
|
|