mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2025-01-25 23:30:01 +00:00
22 lines
714 B
SQL
22 lines
714 B
SQL
ALTER TABLE `user_info` ADD COLUMN `images_size_limit` int(11) UNSIGNED NOT NULL DEFAULT 104857600 /* 100 MiB */;
|
|
|
|
--
|
|
-- Table structure for table `users_images`
|
|
--
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE IF NOT EXISTS `users_images` (
|
|
`id` varchar(30) NOT NULL,
|
|
`username` varchar(20) NOT NULL,
|
|
`width` int(11) NOT NULL,
|
|
`height` int(11) NOT NULL,
|
|
`upload_time` datetime NOT NULL,
|
|
`size` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `username` (`username`),
|
|
KEY `upload_time` (`upload_time`),
|
|
KEY `size` (`size`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|