budgit/internal/db/migrations/00016_add_timezone_to_spaces.sql
juancwu 08f6b034f5
All checks were successful
Deploy / build-and-deploy (push) Successful in 2m25s
feat: set timezone space level
2026-03-03 15:34:52 +00:00

5 lines
125 B
SQL

-- +goose Up
ALTER TABLE spaces ADD COLUMN timezone TEXT;
-- +goose Down
ALTER TABLE spaces DROP COLUMN IF EXISTS timezone;