feat(db): add growing_retention_days setting (migration 015)

This commit is contained in:
Zac Gaetano 2026-05-26 07:27:23 -04:00
parent 09e2987c14
commit a0b7b42524

View file

@ -0,0 +1,6 @@
-- Migration 015: Add growing_retention_days to settings table
-- Default 30 days. ON CONFLICT DO NOTHING is idempotent -- safe to re-run.
INSERT INTO settings (key, value)
VALUES ('growing_retention_days', '30')
ON CONFLICT (key) DO NOTHING;