Add created_at field to issues table

Fixes: #173
This commit is contained in:
Teemu Patja 2017-11-22 12:16:39 +02:00
parent f0f6cc9dcd
commit 7ed831ab2f
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
2 changed files with 1 additions and 0 deletions

View File

@ -0,0 +1 @@
ALTER TABLE "public"."issues" ADD COLUMN "created_at" timestamp without time zone DEFAULT timezone('utc'::text, now());