From: Moritz Bunkus Date: Tue, 17 Feb 2015 13:50:55 +0000 (+0100) Subject: CustomVariableConfig: Datumswerte werden in Spalte timestamp_value gespeichert X-Git-Tag: release-3.2.1~51^2~8 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=230c9dcf5180f3ff56b18e0eb9680534afe16dce;p=kivitendo-erp.git CustomVariableConfig: Datumswerte werden in Spalte timestamp_value gespeichert --- diff --git a/SL/DB/CustomVariableConfig.pm b/SL/DB/CustomVariableConfig.pm index 973e3a836..ab7f83b33 100644 --- a/SL/DB/CustomVariableConfig.pm +++ b/SL/DB/CustomVariableConfig.pm @@ -111,6 +111,7 @@ sub value_col { return { bool => 'bool_value', timestamp => 'timestamp_value', + date => 'timestamp_value', number => 'number_value', integer => 'number_value', customer => 'number_value', @@ -118,7 +119,6 @@ sub value_col { part => 'number_value', text => 'text_value', textfield => 'text_value', - date => 'text_value', select => 'text_value' }->{$type}; }