make BLOB to MEDIUMBLOB
This commit is contained in:
parent
8960108bb4
commit
473358229e
@ -155,7 +155,7 @@ DROP TABLE IF EXISTS `user_profile_picture`;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `user_profile_picture` (
|
||||
`user_id` int(11) NOT NULL,
|
||||
`picture` blob DEFAULT NULL,
|
||||
`picture` mediumblob DEFAULT NULL,
|
||||
PRIMARY KEY (`user_id`),
|
||||
CONSTRAINT `fk_user_profile_picture_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user