Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commitf5b1389unknown_key

Merge pull request #126 from ccantynz-alt/copilot/feat-smart-morning-digest-review-context-restore

Merge pull request #126 from ccantynz-alt/copilot/feat-smart-morning-digest-review-context-restore

Merge remote-tracking branch 'origin/feat/smart-digest-context' into …
CC LABS App committed on June 18, 2026Parents: 441847d 9301ca8
2 files changed+80f5b1389b4e445b1f9d755601f18001fb42a645fc
2 changed files+8−0
Addeddrizzle/0088_pr_visits.sql+6−0View fileUnifiedSplit
1CREATE TABLE IF NOT EXISTS pr_visits (
2 pr_id UUID NOT NULL REFERENCES pull_requests(id) ON DELETE CASCADE,
3 user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
4 visited_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
5 PRIMARY KEY (pr_id, user_id)
6);
Addeddrizzle/0089_smart_digest_pref.sql+2−0View fileUnifiedSplit
1ALTER TABLE users ADD COLUMN IF NOT EXISTS notify_smart_digest BOOLEAN NOT NULL DEFAULT true;
2ALTER TABLE users ADD COLUMN IF NOT EXISTS last_smart_digest_sent_at TIMESTAMPTZ;
03