c1ec4fbd79
test / test (push) Waiting to run
Add 30-day send statistics and auto level-2 rate limits on the domain page. Close Unreleased; pin compose and docs to 1.6.0. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
371 B
SQL
8 lines
371 B
SQL
-- Level-2 rate limit auto mode: operator sets a multiplier; max_messages is
|
|
-- derived from 30-day send stats (plan domain-stats-auto-ratelimit).
|
|
|
|
ALTER TABLE rate_limits ADD COLUMN mode TEXT NOT NULL DEFAULT 'manual'
|
|
CHECK (mode IN ('manual', 'auto'));
|
|
ALTER TABLE rate_limits ADD COLUMN auto_multiplier REAL;
|
|
ALTER TABLE rate_limits ADD COLUMN auto_updated_at TEXT;
|