mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
This version introduces support for a blacklist DB and other changes as to work when the Moe Panel is released. You NEED to use the new DB schema for this version to work! Also fixes wrong name for layout_index.swig
26 lines
826 B
SQL
26 lines
826 B
SQL
CREATE TABLE `files` (
|
|
`id` int(20) unsigned NOT NULL auto_increment,
|
|
`hash` char(40) DEFAULT NULL,
|
|
`originalname` varchar(255) default NULL,
|
|
`filename` varchar(30) default NULL,
|
|
`size` int(15) DEFAULT NULL,
|
|
`date` int(15) DEFAULT NULL,
|
|
`ip` char(15) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
CREATE TABLE `accounts` (
|
|
`id` int(20) unsigned NOT NULL auto_increment,
|
|
`email` varchar(255) default NULL,
|
|
`pass` varchar(255) default NULL,
|
|
`level` int(15) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
|
CREATE TABLE `blacklist` (
|
|
`id` int(20) unsigned NOT NULL auto_increment,
|
|
`hash` char(40) DEFAULT NULL,
|
|
`originalname` varchar(255) default NULL,
|
|
`time` int(15) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |