13 lines
345 B
MySQL
13 lines
345 B
MySQL
|
-- Place your SQL code here
|
||
|
CREATE TABLE IF NOT EXISTS `vn`.`ticketCanAdvanceConfig` (
|
||
|
`id` INT auto_increment NULL,
|
||
|
`destinationOrder` INT NULL,
|
||
|
CONSTRAINT `ticketCanAdvanceConfig_PK` PRIMARY KEY (id)
|
||
|
)
|
||
|
ENGINE=InnoDB
|
||
|
DEFAULT CHARSET=utf8mb3
|
||
|
COLLATE=utf8mb3_unicode_ci;
|
||
|
|
||
|
INSERT INTO `vn`.`ticketCanAdvanceConfig`
|
||
|
SET `destinationOrder` = 5;
|