From: Owen Leonard Date: Sat, 18 Sep 2010 03:47:47 +0000 (-0600) Subject: added email list tables X-Git-Tag: release_1_0_0~32 X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=commitdiff_plain;h=1381b155da2a2ee5cb182f4e8d73108ce9e2175d;p=eq%2F.git added email list tables --- diff --git a/sql/tc.sql b/sql/tc.sql index 71902b6..b10b60f 100644 --- a/sql/tc.sql +++ b/sql/tc.sql @@ -212,3 +212,19 @@ CREATE TABLE `phpgroupware`.`tc_scheduling_priority` ( `priority` INT( 10 ) UNSIGNED NOT NULL DEFAULT '30', `notes` VARCHAR( 128 ) NOT NULL DEFAULT '' ) ENGINE = MYISAM ; + +-- +-- Table structure for table `tc_email_list` +-- +CREATE TABLE `phpgroupware`.`tc_email_list` ( +`email_list` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , +`name` VARCHAR( 128 ) NULL DEFAULT NULL +) ENGINE = MYISAM ; + +-- +-- Table structure for table `tc_email_list_membership` +-- +CREATE TABLE `phpgroupware`.`tc_email_list_membership` ( +`individual` INT( 16 ) UNSIGNED NULL DEFAULT NULL , +`email_list` INT( 16 ) UNSIGNED NULL DEFAULT NULL +) ENGINE = MYISAM ;