From 3fa331ef44887338bd6a324880e200f49f6d580c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 7 Jun 2018 10:51:34 +0000 Subject: [PATCH] Bug 19524: Update Schema files Signed-off-by: George Williams --- 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.7.4