feat(db): add out_of_hours column to bookings table

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-06-22 12:54:35 +01:00
co-authored by Sisyphus
parent 8b703a19ba
commit b4c1e98176
+2 -1
View File
@@ -384,7 +384,8 @@ CREATE TABLE bookings (
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
created_by CHAR(12),
idempotency_key VARCHAR(64) UNIQUE
idempotency_key VARCHAR(64) UNIQUE,
out_of_hours BOOLEAN NOT NULL DEFAULT FALSE
);
CREATE INDEX idx_bookings_userid ON bookings(user_id);