We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93feb26 commit 7830d9eCopy full SHA for 7830d9e
schema/pgsql/schema.sql
@@ -121,6 +121,7 @@ CREATE INDEX idx_contactgroup_member_changed_at ON contactgroup_member(changed_a
121
CREATE TABLE schedule (
122
id bigserial,
123
name citext NOT NULL,
124
+ timezone text NOT NULL, -- e.g. 'Europe/Berlin'
125
126
changed_at bigint NOT NULL,
127
deleted boolenum NOT NULL DEFAULT 'n',
schema/pgsql/upgrades/002.sql
@@ -0,0 +1 @@
1
+ALTER TABLE schedule ADD COLUMN timezone text NOT NULL;
0 commit comments