@@ -, +, @@ --- Koha/Schema/Result/Aqorder.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Aqorder.pm +++ a/Koha/Schema/Result/Aqorder.pm @@ -146,6 +146,12 @@ __PACKAGE__->table("aqorders"); is_nullable: 1 size: [13,2] +=head2 replacementprice + + data_type: 'decimal' + is_nullable: 1 + size: [28,6] + =head2 rrp_tax_excluded data_type: 'decimal' @@ -362,6 +368,8 @@ __PACKAGE__->add_columns( }, "rrp", { data_type => "decimal", is_nullable => 1, size => [13, 2] }, + "replacementprice", + { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "rrp_tax_excluded", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "rrp_tax_included", @@ -625,8 +633,8 @@ Composing rels: L -> borrowernumber __PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-28 15:05:37 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FyZsBWGJ8wsPkFdYUAetmg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-28 20:34:37 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QMqUDdJBpsIil8VIdqcZjQ # You can replace this text with custom code or comments, and it will be preserved on regeneration --