From 966b31de0fc0e8d86efce110b716754b444e9e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20G=C3=A9n=C3=A9r=C3=A9?= Date: Tue, 11 Oct 2016 11:35:06 +0200 Subject: [PATCH] Bug Fix : issue with commas in the SQL script. --- htdocs/install/mysql/tables/llx_user_employment.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/mysql/tables/llx_user_employment.sql b/htdocs/install/mysql/tables/llx_user_employment.sql index 5c6d65a02c2..4dfa2548c2f 100644 --- a/htdocs/install/mysql/tables/llx_user_employment.sql +++ b/htdocs/install/mysql/tables/llx_user_employment.sql @@ -32,8 +32,8 @@ create table llx_user_employment status integer NOT NULL, -- draft, active, closed salary double(24,8), -- last and current value stored into llx_user salaryextra double(24,8), -- last and current value stored into llx_user - weeklyhours double(16,8) -- last and current value stored into llx_user + weeklyhours double(16,8), -- last and current value stored into llx_user dateemployment date, -- last and current value stored into llx_user - dateemploymentend date, -- last and current value stored into llx_user + dateemploymentend date -- last and current value stored into llx_user )ENGINE=innodb;