9 lines
366 B
SQL
9 lines
366 B
SQL
-- Place your SQL code here
|
|
CREATE TABLE IF NOT EXISTS vn.ticketCanAdvanceConfig (
|
|
id int(10) unsigned NOT NULL,
|
|
destinationOrder INT NULL,
|
|
PRIMARY KEY (`id`),
|
|
CONSTRAINT `ticketCanAdvanceConfig_check` CHECK (`id` = 1)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
|
|
|
|
INSERT INTO vn.ticketCanAdvanceConfig SET id =1, destinationOrder = 5; |