store_sqlite: make calendar timezone optional

This commit is contained in:
Lennart
2024-11-02 12:11:29 +01:00
parent 46b8593a6e
commit 442082fb1c

View File

@@ -6,7 +6,7 @@ CREATE TABLE calendars (
description TEXT,
"order" INT DEFAULT 0 NOT NULL,
color TEXT,
timezone TEXT NOT NULL,
timezone TEXT,
deleted_at DATETIME,
PRIMARY KEY (principal, id)
);