From 15b562fbe9c609f957f15d1749f4026d698db395 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 29 Dec 2017 16:14:46 +0000 Subject: [PATCH] Bug 18639 - Schema updates (DO NOT PUSH) Signed-off-by: Martin Renvoize --- Koha/Schema/Result/Aqorder.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Schema/Result/Aqorder.pm b/Koha/Schema/Result/Aqorder.pm index 174f3a6..731894a 100644 --- a/Koha/Schema/Result/Aqorder.pm +++ b/Koha/Schema/Result/Aqorder.pm @@ -152,6 +152,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' @@ -370,6 +376,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", -- 2.1.4