Reviewed-on: #2628 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
87b69e0455
|
@ -1,10 +1,10 @@
|
||||||
-- Place your SQL code here
|
-- Place your SQL code here
|
||||||
CREATE TABLE IF NOT EXISTS travelKgPercentage (
|
CREATE TABLE IF NOT EXISTS vn.travelKgPercentage (
|
||||||
value INT(3) PRIMARY KEY,
|
value INT(3) PRIMARY KEY,
|
||||||
className VARCHAR(50)
|
className VARCHAR(50)
|
||||||
);
|
);
|
||||||
|
|
||||||
INSERT IGNORE INTO travelKgPercentage (value, className)
|
INSERT IGNORE INTO vn.travelKgPercentage (value, className)
|
||||||
VALUES
|
VALUES
|
||||||
(80, 'primary'),
|
(80, 'primary'),
|
||||||
(100, 'alert');
|
(100, 'alert');
|
||||||
|
|
Loading…
Reference in New Issue