test to dev #2629

Merged
alexm merged 4 commits from test into dev 2024-06-21 12:33:59 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 87b69e0455 - Show all commits

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');