From 0be477fde8d390205b0a35537867c24621a5cacb Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Thu, 22 Oct 2015 13:46:43 +0200 Subject: [PATCH] By default, the card's attribute for Price has 4 decimal' --- sql/upgrade.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sql/upgrade.sql b/sql/upgrade.sql index ec7e852a8..f759a9cae 100644 --- a/sql/upgrade.sql +++ b/sql/upgrade.sql @@ -250,4 +250,6 @@ begin return; end; $BODY$ - LANGUAGE plpgsql \ No newline at end of file + LANGUAGE plpgsql ; + +update attr_def set ad_extra=4 where ad_id in (6,7);