Upgrade for adding table structure for calendar holidays

This commit is contained in:
skeeter
2001-04-30 03:04:02 +00:00
parent 5cf7a13846
commit ecf1d3bc66
7 changed files with 59 additions and 8 deletions

View File

@ -245,7 +245,15 @@
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE newsgroups (
$sql = "CREATE TABLE phpgw_cal_holidays (
locale char(2) NOT NULL,
name varchar(50) NOT NULL,
date_time int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (locale,name)
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE newsgroups (
con int(11) NOT NULL auto_increment,
name varchar(255) NOT NULL,
messagecount int(11) NOT NULL,