From: Mike Rylander Date: Tue, 26 Sep 2017 15:51:41 +0000 (-0400) Subject: LP#1719694: Add missing column in baseline schema for batch patron edit X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6037312bec16fbac86697ebd6c435522d354939d;p=contrib%2FConifer.git LP#1719694: Add missing column in baseline schema for batch patron edit Signed-off-by: Mike Rylander Signed-off-by: Kathy Lussier --- diff --git a/Open-ILS/src/sql/Pg/090.schema.action.sql b/Open-ILS/src/sql/Pg/090.schema.action.sql index 2d598df6ce..8211b23fd3 100644 --- a/Open-ILS/src/sql/Pg/090.schema.action.sql +++ b/Open-ILS/src/sql/Pg/090.schema.action.sql @@ -816,6 +816,7 @@ CREATE TABLE action.fieldset_group ( complete_time TIMESTAMPTZ, container INT, -- Points to a container of some type ... container_type TEXT, -- One of 'biblio_record_entry', 'user', 'call_number', 'copy' + can_rollback BOOL DEFAULT TRUE, rollback_group INT REFERENCES action.fieldset_group (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, rollback_time TIMESTAMPTZ, creator INT NOT NULL REFERENCES actor.usr (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,