Skip to content

Commit

Permalink
timezone fix (#1662)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladysl committed Apr 17, 2024
1 parent 9c13c99 commit a292d5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS owner_association_request_activity
owner_association_request_id bigint,
event_type varchar(64) NOT NULL,
status varchar(64) NOT NULL,
created_at timestamp without time zone NOT NULL DEFAULT NOW(),
created_at timestamp without time zone NOT NULL DEFAULT (NOW() AT TIME ZONE ('UTC')),
status_updated_by varchar(512),

CONSTRAINT owner_association_request_activity_fk_owner_association_request FOREIGN KEY (owner_association_request_id) REFERENCES owner_association_request (id)
Expand Down

0 comments on commit a292d5f

Please sign in to comment.