mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Fix for bug #420708. Also, restructured the holiday support. I think this will be the final structure. This gives the most flexibility, a single file to handle all future years. This does not care about previous years rules.
This commit is contained in:
@ -221,10 +221,13 @@
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
$sql = "CREATE TABLE phpgw_cal_holidays (
|
||||
hol_id serial,
|
||||
hol_id serial,
|
||||
locale char(2) NOT NULL,
|
||||
name varchar(50) NOT NULL,
|
||||
date_time int4 DEFAULT 0 NOT NULL
|
||||
mday int DEFAULT 0,
|
||||
month_num int DEFAULT 0,
|
||||
occurence int DEFAULT 0,
|
||||
dow int DEFAULT 0
|
||||
)";
|
||||
$phpgw_setup->db->query($sql);
|
||||
|
||||
|
Reference in New Issue
Block a user