@@ -, +, @@ --- 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 @@ -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' @@ -150,6 +156,8 @@ __PACKAGE__->add_columns( { data_type => "mediumtext", 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", @@ -251,8 +259,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-15 16:13:26 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OuH2XMR7vE5PQB5ih0VQaw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-10 07:32:44 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:61aYHJksP9kl2rWsse3g8A # You can replace this text with custom content, and it will be preserved on regeneration --