feat(db): add growing_retention_days setting (migration 015)
This commit is contained in:
parent
09e2987c14
commit
a0b7b42524
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
Loading…
Reference in a new issue