Skip to content

Commit

Permalink
commit_timestamp must be time stamp with time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneTR committed Jul 26, 2023
1 parent 00e260e commit 5da1b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE TABLE projects (
uri text,
branch text,
commit_hash text,
commit_timestamp timestamp,
commit_timestamp timestamp with time zone,
email text,
categories int[],
usage_scenario json,
Expand Down
2 changes: 1 addition & 1 deletion migrations/2023_07_22_commit_timestamp.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE "projects" ADD COLUMN "commit_timestamp" text;
ALTER TABLE "projects" ADD COLUMN "commit_timestamp" timestamp with time zone;

0 comments on commit 5da1b03

Please sign in to comment.