Add tables to store working employee contracts

This commit is contained in:
Laurent Destailleur
2016-09-28 19:23:34 +02:00
parent 86d86f8442
commit 2d6877ac67
5 changed files with 71 additions and 9 deletions

View File

@@ -78,7 +78,7 @@ create table llx_user
nb_holiday integer DEFAULT 0,
thm double(24,8),
tjm double(24,8),
salary double(24,8),
salaryextra double(24,8),
weeklyhours double(16,8)
salary double(24,8), -- denormalized value coming from llx_user_employment
salaryextra double(24,8), -- denormalized value coming from llx_user_employment
weeklyhours double(16,8) -- denormalized value coming from llx_user_employment
)ENGINE=innodb;