mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:51:12 -05:00
6 lines
536 B
SQL
6 lines
536 B
SQL
-- Add admin settings for non-disruptive auto-refresh
|
|
INSERT INTO admin_settings (setting_key, setting_value, category, description)
|
|
VALUES
|
|
('auto_refresh_strategy', '"merge"', 'admin_panel', 'Auto-refresh strategy: merge (silently merge new items), replace (current behavior - full replacement), notify (show notification only)'),
|
|
('preserve_interaction_state', '"true"', 'admin_panel', 'Whether to preserve user interaction state during auto-refresh (expanded items, typing in notes, etc.)')
|
|
ON CONFLICT (setting_key) DO NOTHING; |