From cce5ce7ce78642a451c9f06f4bc1dee80f9451c7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 19 Apr 2018 12:21:00 -0300 Subject: [PATCH] Bug 18786: DBIC Schema changes Signed-off-by: Jonathan Druart --- 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..1af530ccfe 100644 --- a/Koha/Schema/Result/Accountline.pm +++ b/Koha/Schema/Result/Accountline.pm @@ -81,6 +81,12 @@ __PACKAGE__->table("accountlines"); is_nullable: 1 size: 5 +=head2 payment_type + + data_type: 'varchar' + is_nullable: 1 + size: 80 + =head2 amountoutstanding data_type: 'decimal' @@ -138,6 +144,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "accounttype", { data_type => "varchar", is_nullable => 1, size => 5 }, + "payment_type", + { data_type => "varchar", is_nullable => 1, size => 80 }, "amountoutstanding", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "lastincrement", @@ -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-04-19 12:18:02 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FUX/e/s202yrUtP3c13lfw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2