10 lines
386 B
SQL
10 lines
386 B
SQL
-- inserts for E2ETests
|
|
|
|
INSERT INTO wine_cultivation (cultid, name, description, organic) VALUES
|
|
('KIP', 'KIP', 'Kontrollierte Integrierte Produktion', FALSE),
|
|
('B', 'Bio', 'Biologische Produktion', TRUE);
|
|
|
|
INSERT INTO wine_attribute (attrid, name, active, max_kg_per_ha, strict, fill_lower) VALUES
|
|
('K', 'Kabinett', TRUE, NULL, FALSE, 0),
|
|
('D', 'DAC', TRUE, 7500, FALSE, 0);
|