mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
* refactor: add explicit owner scope across channels * fix: tighten routine owner target routing * fix: address owner scope review feedback * Fix owner-scope onboarding and event trigger isolation * Tighten routing fallback and wizard owner validation * fix: address owner-scope follow-up review * fix: tighten owner-scope follow-up details * fix: import Channel trait in telegram test * fix: normalize http webhook sender ids * fix: address remaining owner-scope review issues * fix: reconcile config rebase fallout * fix: reconcile extension manager rebase drift * fix: address current copilot review regressions * fix: restore clippy matrix after rebase
12 lines
355 B
SQL
12 lines
355 B
SQL
-- Remove the legacy 'default' sentinel from routine notifications.
|
|
-- A NULL notify_user now means "resolve the configured owner's last-seen
|
|
-- channel target at send time."
|
|
|
|
ALTER TABLE routines
|
|
ALTER COLUMN notify_user DROP NOT NULL,
|
|
ALTER COLUMN notify_user DROP DEFAULT;
|
|
|
|
UPDATE routines
|
|
SET notify_user = NULL
|
|
WHERE notify_user = 'default';
|