From 7e6fc7c4789ff4c31bf4f7464dbc60a3f2979cf7 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 23 Mar 2018 10:35:47 -0400 Subject: [PATCH] Bug 19066 - Update Schema --- 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 4ca754d230..e044456731 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( @@ -153,6 +159,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 @@ -235,8 +243,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Nqx+Byr+p91Kbsuncau0Ng +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-03-22 22:08:37 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5oXpvIh953I54uR5kb7HOQ # You can replace this text with custom content, and it will be preserved on regeneration -- 2.14.3 (Apple Git-98)