From faf8526e040becf203c9f6b806b4bfaa0398499a 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 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Schema/Result/Accountline.pm b/Koha/Schema/Result/Accountline.pm index 641b632..29b0be1 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -110,6 +110,12 @@ __PACKAGE__->table("accountlines"); data_type: 'integer' is_nullable: 1 +=head2 branchcode + + data_type: 'varchar' + is_nullable: 1 + size: 10 + =cut __PACKAGE__->add_columns( @@ -148,6 +154,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 -- 2.7.4