Bug Fix : issue with commas in the SQL script.

This commit is contained in:
Bruno Généré 2016-10-11 11:35:06 +02:00
parent b903e1e5aa
commit 966b31de0f

View File

@ -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;