From 0a869e5f4589c5cdb0c646e60deb961d18abd434 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Thu, 7 Jun 2018 10:51:34 +0000
Subject: [PATCH] Bug 19524: Update Schema files
Content-Type: text/plain; charset=utf-8

Signed-off-by: George Williams <george@nekls.org>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
---
 Koha/Schema/Result/PatronList.pm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/Koha/Schema/Result/PatronList.pm b/Koha/Schema/Result/PatronList.pm
index 3864f13..3b5ec7c 100644
--- a/Koha/Schema/Result/PatronList.pm
+++ b/Koha/Schema/Result/PatronList.pm
@@ -41,6 +41,12 @@ __PACKAGE__->table("patron_lists");
   is_foreign_key: 1
   is_nullable: 0
 
+=head2 shared
+
+  data_type: 'tinyint'
+  default_value: 0
+  is_nullable: 1
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -50,6 +56,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_nullable => 0, size => 255 },
   "owner",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
+  "shared",
+  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
 );
 
 =head1 PRIMARY KEY
@@ -97,8 +105,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 21:34:14
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iWNlXRM+XvkJMlnu4F0xKw
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-07 10:50:32
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8AfbIJuM+GHTRa0HeK1HbQ
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
-- 
2.1.4