Skip to content

Commit

Permalink
Added deleted field to solutions for soft delete.
Browse files Browse the repository at this point in the history
  • Loading branch information
phorne-uncharted committed Jul 25, 2018
1 parent e9185c9 commit 9b1bf0d
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 9b1bf0d

Please sign in to comment.