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=c5f2b4f822820bdeaffb80c4c724e1071ce89ca4;p=evergreen%2Fpines.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 457416b1dc..3c8540735e 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,