Skip to content

Commit

Permalink
Merge pull request #70 from unchartedsoftware/soft-delete-solution
Browse files Browse the repository at this point in the history
Added deleted field to solutions for soft delete.
  • Loading branch information
phorne-uncharted authored Jul 25, 2018
2 parents e9185c9 + 9b1bf0d commit 6082b8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion postgres/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ const (
request_id varchar(200),
solution_id varchar(200),
progress varchar(40),
created_time timestamp
created_time timestamp,
deleted boolean
);`
requestFeatureTableCreationSQL = `CREATE TABLE %s (
request_id varchar(200),
Expand Down

0 comments on commit 6082b8b

Please sign in to comment.