Skip to content

Commit

Permalink
created_at as utc
Browse files Browse the repository at this point in the history
Co-authored-by: Christopher Kolstad <[email protected]>
  • Loading branch information
daveleek and chriswk authored Oct 24, 2024
1 parent 0ccafba commit cbceba7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports.up = function(db, cb) {
feature_name TEXT,
environment TEXT,
created_by_user_id INTEGER NOT NULL REFERENCES users(id),
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now() at time zone 'utc'),
CONSTRAINT release_plan_definitions_discriminator_values
CHECK (discriminator IN ('plan', 'template')),
CONSTRAINT feature_environments_fkey FOREIGN KEY (environment, feature_name)
Expand Down

0 comments on commit cbceba7

Please sign in to comment.