Skip to content

Commit

Permalink
Add create_at timestamp to peer review in db. #3
Browse files Browse the repository at this point in the history
  • Loading branch information
keveri committed Nov 30, 2015
1 parent b1a8c93 commit fe06859
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion database/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ CREATE TABLE IF NOT EXISTS peer_reviews (
comment text,
score int,
reviewer_id text NOT NULL,
status status NOT NULL DEFAULT 'waiting'
status status NOT NULL DEFAULT 'waiting',
created_at timestamptz NOT NULL DEFAULT now()
);

0 comments on commit fe06859

Please sign in to comment.