Merge pull request #20363 from dolibit-ut/patch-382

Update llx_c_hrm_public_holiday.sql
This commit is contained in:
Laurent Destailleur 2022-03-15 19:36:19 +01:00 committed by GitHub
commit 98dfea0443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,14 +18,15 @@
create table llx_c_hrm_public_holiday create table llx_c_hrm_public_holiday
( (
id integer AUTO_INCREMENT PRIMARY KEY, id integer AUTO_INCREMENT PRIMARY KEY,
entity integer DEFAULT 0 NOT NULL, -- multi company id, 0 = all entity integer DEFAULT 0 NOT NULL, -- multi company id, 0 = all
fk_country integer, fk_country integer,
code varchar(62), fk_departement integer,
dayrule varchar(64) DEFAULT '', -- 'easter', 'eastermonday', ... code varchar(62),
day integer, dayrule varchar(64) DEFAULT '', -- 'easter', 'eastermonday', ...
month integer, day integer,
year integer, -- 0 for all years month integer,
active integer DEFAULT 1, year integer, -- 0 for all years
import_key varchar(14) active integer DEFAULT 1,
import_key varchar(14)
)ENGINE=innodb; )ENGINE=innodb;