19 lines
446 B
SQL
19 lines
446 B
SQL
#
|
|
# TABLE STRUCTURE FOR: product
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `product`;
|
|
|
|
CREATE TABLE `product` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(225) NOT NULL,
|
|
`picture` text NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`link` text NOT NULL,
|
|
`description` text NOT NULL,
|
|
`date_created` int(11) NOT NULL,
|
|
`create_by` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
|
|
|