Added additional values to settings.

This commit is contained in:
2026-02-02 18:25:06 +01:00
parent c34b2391eb
commit 544b6ee5fc
5 changed files with 53 additions and 11 deletions
@@ -0,0 +1,10 @@
-- Add migration script here
ALTER TABLE public.settings
ADD allergens_text text,
ADD bio_info text;
UPDATE settings SET
allergens_text = 'Produkt kann Spuren von Erdnüssen, Gluten, Krebstieren, Lupinen, Schalenfrüchte, Sesam, Soja und Weichtieren enthalten.',
bio_info = '+aus kontrolliert biologischem Anbau.'
WHERE id = 1;