19 lines
448 B
SQL
19 lines
448 B
SQL
#
|
|
# TABLE STRUCTURE FOR: customer_doc
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `customer_doc`;
|
|
|
|
CREATE TABLE `customer_doc` (
|
|
`id` int(9) NOT NULL AUTO_INCREMENT,
|
|
`customer_id` int(11) NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`document` text NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
`createby` int(11) NOT NULL,
|
|
`updated` int(11) NOT NULL,
|
|
`updateby` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|