11 lines
323 B
MySQL
11 lines
323 B
MySQL
|
-- Place your SQL code here
|
||
|
CREATE TABLE IF NOT EXISTS `vn`.`agencyIncoming` (
|
||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
`code` varchar(50) DEFAULT NULL,
|
||
|
`description` varchar(50) DEFAULT NULL,
|
||
|
`isOrigin` tinyint(1) DEFAULT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
)
|
||
|
ENGINE=InnoDB
|
||
|
DEFAULT CHARSET=utf8mb3
|
||
|
COLLATE=utf8mb3_unicode_ci;
|