fix: add calendar_events.active, expand seed coverage, and refresh local init script

This commit is contained in:
2026-06-28 22:21:08 -05:00
parent f771ad751b
commit 6121c76d97
3 changed files with 62 additions and 33 deletions
+3 -1
View File
@@ -180,7 +180,9 @@ CREATE TABLE IF NOT EXISTS calendar_events (
title VARCHAR(255) NOT NULL,
type VARCHAR(100) NOT NULL,
description TEXT,
color VARCHAR(20) NOT NULL
color VARCHAR(20) NOT NULL,
active BOOLEAN DEFAULT TRUE,
created_at TIMESTAMP DEFAULT NOW()
);
CREATE TABLE IF NOT EXISTS user_sessions (