#6238 add scheme #2628

Merged
jorgep merged 1 commits from 6238-warmfix-useDb into test 2024-06-21 11:40:12 +00:00
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
-- Place your SQL code here
CREATE TABLE IF NOT EXISTS travelKgPercentage (
CREATE TABLE IF NOT EXISTS vn.travelKgPercentage (
value INT(3) PRIMARY KEY,
className VARCHAR(50)
);
INSERT IGNORE INTO travelKgPercentage (value, className)
INSERT IGNORE INTO vn.travelKgPercentage (value, className)
VALUES
(80, 'primary'),
(100, 'alert');