17 lines
382 B
SQL
17 lines
382 B
SQL
#
|
|
# TABLE STRUCTURE FOR: customer_va
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `customer_va`;
|
|
|
|
CREATE TABLE `customer_va` (
|
|
`id` int(9) NOT NULL AUTO_INCREMENT,
|
|
`fix_va` text NOT NULL,
|
|
`vendor` text NOT NULL,
|
|
`id_customer` int(11) NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
`createby` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|