From 63fe2e0354ec0163344f1aeb8f9f3604e481b742 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 25 Oct 2018 08:51:10 -0400 Subject: [PATCH] Bug 19066: Update Schema Signed-off-by: Josef Moravec Signed-off-by: Martin Renvoize --- 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 ab6d8413d6..49ec108716 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -111,6 +111,12 @@ __PACKAGE__->table("accountlines"); data_type: 'integer' is_nullable: 1 +=head2 branchcode + + data_type: 'varchar' + is_nullable: 1 + size: 10 + =cut __PACKAGE__->add_columns( @@ -154,6 +160,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 @@ -236,7 +244,7 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-05-16 17:00:24 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pygYYKxFDRLX97PyeUeLvg +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-10-25 12:46:26 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mmVBZKQGAVdqSUOHecOSFA 1; -- 2.19.2