· 8 years ago · Feb 04, 2018, 07:00 PM
1-- Database: `images`
2-- Table structure for table `image`
3DROP TABLE IF EXISTS `image`;
4CREATE TABLE IF NOT EXISTS `image` (
5 `id` int(11) NOT NULL AUTO_INCREMENT,
6 `file` longblob NOT NULL,
7 `name` varchar(50) NOT NULL,
8 PRIMARY KEY (`id`)
9) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;