Fix for bug #420783, also added a hol_id field to the holidays tables.

This commit is contained in:
skeeter
2001-05-02 17:57:46 +00:00
parent 61675e82b5
commit b281b7b213
5 changed files with 78 additions and 5 deletions

View File

@ -248,10 +248,11 @@
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE phpgw_cal_holidays (
hol_id int(11) NOT NULL auto_increment,
locale char(2) NOT NULL,
name varchar(50) NOT NULL,
date_time int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (locale,name)
PRIMARY KEY (hol_id)
)";
$phpgw_setup->db->query($sql);