From a6562ea80977a2ef1d778300df54dc09a3f31b16 Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Wed, 11 Mar 2020 09:39:25 -0400
Subject: [PATCH] Bug 17268: Set boolean for shared column in schema

---
 Koha/Schema/Result/AdvancedEditorMacro.pm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Koha/Schema/Result/AdvancedEditorMacro.pm b/Koha/Schema/Result/AdvancedEditorMacro.pm
index 9b815abbba..7c5448bd94 100644
--- a/Koha/Schema/Result/AdvancedEditorMacro.pm
+++ b/Koha/Schema/Result/AdvancedEditorMacro.pm
@@ -105,6 +105,9 @@ __PACKAGE__->belongs_to(
 # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-02 15:01:04
 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Wx556VlgXYqdP2XyQ87Jzg
 
+__PACKAGE__->add_columns(
+            '+shared' => { is_boolean => 1 },
+        );
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;
-- 
2.11.0