@@ -, +, @@ --- Koha/Schema/Result/Accountline.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Accountline.pm +++ a/Koha/Schema/Result/Accountline.pm @@ -122,6 +122,12 @@ __PACKAGE__->table("accountlines"); data_type: 'integer' is_nullable: 1 +=head2 branchcode + + data_type: 'varchar' + is_nullable: 1 + size: 10 + =cut __PACKAGE__->add_columns( @@ -169,6 +175,8 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "manager_id", { data_type => "integer", is_nullable => 1 }, + "branchcode", + { data_type => "varchar", is_nullable => 1, size => 10 }, ); =head1 PRIMARY KEY @@ -221,8 +229,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-26 17:18:34 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RCQohhphtg+0+RszpB4wLg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-27 17:53:13 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MfimYr/8cDS5r05Jly91FA # You can replace this text with custom content, and it will be preserved on regeneration --