adds full action fields to struct
All checks were successful
gitea-deepak/gogmagog/pipeline/head This commit looks good

This commit is contained in:
2020-12-29 15:05:00 -06:00
parent 7ae7f294da
commit 50bbcdc71d
4 changed files with 26 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS actions(
completed_on TIMESTAMP WITH TIME ZONE,
created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL,
updated_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL,
plan int REFERENCES plans(plan_id)
plan_id int REFERENCES plans(plan_id)
);