From ad804d1904e8a13f253f9f3369d7b4566b8f02b1 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 26 Jul 2018 09:05:50 -0400 Subject: [PATCH] Bug 19066: Update Schema Signed-off-by: Lisette Scheer Signed-off-by: Lisette Scheer --- Koha/Schema/Result/Accountline.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Accountline.pm b/Koha/Schema/Result/Accountline.pm index 1af530c..50db99b 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -116,6 +116,12 @@ __PACKAGE__->table("accountlines"); data_type: 'integer' is_nullable: 1 +=head2 branchcode + + data_type: 'varchar' + is_nullable: 1 + size: 10 + =cut __PACKAGE__->add_columns( @@ -161,6 +167,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", is_nullable => 1 }, "manager_id", { data_type => "integer", is_nullable => 1 }, + "branchcode", + { data_type => "varchar", is_nullable => 1, size => 10 }, ); =head1 PRIMARY KEY @@ -243,8 +251,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-04-19 12:18:02 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FUX/e/s202yrUtP3c13lfw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-07-26 13:06:50 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EY6iEYJHKRCKcciuUzaH+Q # You can replace this text with custom content, and it will be preserved on regeneration -- 2.1.4