Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.
https://uguu.se
phpuploaderupload-imagesupload-filesqlite-databasepomffile-sharingnginxhostingfilehostingfilehosterfilehostfile-uploadlightweighttemporary-filesuguuupload-files
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.
26 lines
826 B
26 lines
826 B
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; |