feat: refs #7116 create table
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-06-28 09:59:55 +02:00
parent 7b3d51dfca
commit 8b617df13d
1 changed files with 2 additions and 5 deletions

View File

@ -1,10 +1,7 @@
-- 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`)
`agencyModeFk` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`agencyModeFk`)
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb3