-- Setup flag and license storage in settings table
-- Uses the existing key-value settings table

INSERT INTO settings (key, value, updated_at)
VALUES ('setup_complete', 'false'::jsonb, NOW())
ON CONFLICT (key) DO NOTHING;

INSERT INTO settings (key, value, updated_at)
VALUES ('license', 'null'::jsonb, NOW())
ON CONFLICT (key) DO NOTHING;

INSERT INTO settings (key, value, updated_at)
VALUES ('eula_acceptance', 'null'::jsonb, NOW())
ON CONFLICT (key) DO NOTHING;
