3 -- Host: localhost Database: phpgroupware
4 -- ------------------------------------------------------
7 -- Current Database: `phpgroupware`
10 CREATE DATABASE /*!32312 IF NOT EXISTS*/ `phpgroupware` /*!40100 DEFAULT CHARACTER SET latin1 */;
15 -- Table structure for table `tc_activity`
17 CREATE TABLE `tc_activity` (
18 `activity` int(16) unsigned NOT NULL auto_increment,
19 `assignment` int(16) unsigned NOT NULL,
20 `date` date default NULL,
22 PRIMARY KEY (`activity`),
23 KEY `assignment` (`assignment`)
24 ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
27 -- Table structure for table `tc_appointment`
29 CREATE TABLE `tc_appointment` (
30 `appointment` int(16) unsigned NOT NULL auto_increment,
31 `presidency` int(16) unsigned NOT NULL default '0',
32 `family` int(16) unsigned default '0',
33 `individual` int(16) unsigned default '0',
34 `date` date NOT NULL default '0000-00-00',
35 `time` time NOT NULL default '00:00:00',
36 `location` varchar(120) default NULL,
37 `uid` bigint(64) unsigned NOT NULL default '0',
38 PRIMARY KEY (`appointment`)
39 ) ENGINE=MyISAM AUTO_INCREMENT=132 DEFAULT CHARSET=latin1;
42 -- Table structure for table `tc_assignment`
44 CREATE TABLE `tc_assignment` (
45 `assignment` int(12) unsigned NOT NULL auto_increment,
46 `name` varchar(60) NOT NULL,
47 `abbreviation` varchar(12) default NULL,
48 PRIMARY KEY (`assignment`)
49 ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
52 -- Dumping data for table `tc_assignment`
54 LOCK TABLES `tc_assignment` WRITE;
55 /*!40000 ALTER TABLE `tc_assignment` DISABLE KEYS */;
56 INSERT INTO `tc_assignment` (`assignment`, `name`, `abbreviation`) VALUES (1,'Enrichment Night Babysitting','RS'),(2,'Building Lockup','LU'),(3,'Building Cleaning Coordinator','CC'),(4,'Missionary Splits','MS'),(5,'Stake Farm','SF'),(6,'Loveland Kitchen','LK'),(7,'Moves','MV'),(8,'Temple Kitchen & Laundary','TKL'),(9,'Temple Sealings','TS'),(10,'Temple Initatories','TI');
57 /*!40000 ALTER TABLE `tc_assignment` ENABLE KEYS */;
61 -- Table structure for table `tc_attendance`
63 CREATE TABLE `tc_attendance` (
64 `individual` int(16) unsigned NOT NULL default '0',
65 `date` date default NULL,
66 KEY `individual` (`individual`)
67 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
70 -- Table structure for table `tc_calling`
72 CREATE TABLE `tc_calling` (
73 `name` varchar(30) default NULL,
74 `organization` varchar(30) default NULL,
75 `position` varchar(30) default NULL,
76 `sustained` varchar(30) default NULL,
78 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
81 -- Table structure for table `tc_companionship`
84 CREATE TABLE `tc_companionship` (
85 `companionship` int(16) unsigned NOT NULL default '0',
86 `individual` int(16) unsigned NOT NULL default '0',
87 `district` int(16) unsigned default NULL,
88 `scheduling_priority` int(16) unsigned default NULL,
89 `valid` tinyint(1) default NULL,
90 KEY `companionship` (`companionship`)
91 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
94 -- Table structure for table `tc_district`
96 CREATE TABLE `tc_district` (
97 `district` int(16) unsigned NOT NULL default '0',
98 `supervisor` int(16) unsigned default NULL,
99 `valid` tinyint(1) default NULL,
100 PRIMARY KEY (`district`)
101 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
104 -- Table structure for table `tc_individual`
106 CREATE TABLE `tc_individual` (
107 `individual` int(16) unsigned NOT NULL auto_increment,
108 `mls_id` int(16) unsigned NOT NULL,
109 `name` varchar(60) default NULL,
110 `address` varchar(255) default NULL,
111 `phone` varchar(12) default NULL,
112 `email` varchar(120) default NULL,
113 `hh_position` enum('Head of Household','Spouse','Other') DEFAULT 'Other',
114 `priesthood` enum('High Priest','Elder','Priest','Teacher','Deacon','Unordained') DEFAULT NULL,
115 `steward` enum('High Priest','Elder') DEFAULT NULL,
116 `scheduling_priority` int(16) unsigned default NULL,
117 `attending` tinyint(1) default '0',
118 `valid` tinyint(1) default NULL,
119 PRIMARY KEY (`individual`)
120 ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1;
123 -- Table structure for table `tc_family`
125 CREATE TABLE `tc_family` (
126 `family` int(16) unsigned NOT NULL auto_increment,
127 `individual` int(16) unsigned default '0',
128 `companionship` int(16) unsigned default NULL,
129 `scheduling_priority` int(16) unsigned default NULL,
130 `valid` tinyint(1) default NULL,
131 PRIMARY KEY (`family`)
132 ) ENGINE=MyISAM AUTO_INCREMENT=277 DEFAULT CHARSET=latin1;
135 -- Table structure for table `tc_participation`
137 CREATE TABLE `tc_participation` (
138 `individual` int(16) unsigned NOT NULL default '0',
139 `activity` int(16) unsigned default NULL,
140 UNIQUE KEY `activity_ndx` (`individual`,`activity`)
141 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
144 -- Table structure for table `tc_interview`
146 CREATE TABLE `tc_interview` (
147 `interview` int(16) unsigned NOT NULL auto_increment,
148 `interviewer` int(16) unsigned default NULL,
149 `individual` int(16) unsigned default NULL,
150 `date` date default NULL,
152 `interview_type` enum('hti','ppi') NOT NULL DEFAULT 'hti',
153 PRIMARY KEY (`interview`)
154 ) ENGINE=MyISAM AUTO_INCREMENT=248 DEFAULT CHARSET=latin1;
158 -- Table structure for table `tc_presidency`
160 CREATE TABLE `tc_presidency` (
161 `presidency` int(16) unsigned NOT NULL auto_increment,
162 `individual` int(16) unsigned NOT NULL default '0',
163 `district` int(16) unsigned default '0',
164 `email` varchar(60) NOT NULL,
165 `president` tinyint(1) default '0',
166 `counselor` tinyint(1) default '0',
167 `secretary` tinyint(1) default '0',
168 `valid` tinyint(1) default '1',
169 KEY `presidency` (`presidency`),
170 KEY `individual` (`individual`)
171 ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
174 -- Table structure for table `tc_visit`
176 CREATE TABLE `tc_visit` (
177 `visit` int(16) unsigned NOT NULL auto_increment,
178 `family` int(16) unsigned default NULL,
179 `companionship` int(16) unsigned default NULL,
180 `companion1` int(16) unsigned default NULL,
181 `companion2` int(16) unsigned default NULL,
182 `date` date default NULL,
184 `visited` enum('y','n','') default NULL,
185 `visit_type` enum('presidency','hometeaching') not null default 'hometeaching',
186 PRIMARY KEY (`visit`)
187 ) ENGINE=MyISAM AUTO_INCREMENT=9513 DEFAULT CHARSET=latin1;
190 -- Table structure for table `tc_willingness`
192 CREATE TABLE `tc_willingness` (
193 `individual` int(16) unsigned NOT NULL,
194 `assignment` int(16) unsigned NOT NULL,
195 `willing` enum('y','n','') NOT NULL,
196 KEY `individual` (`individual`,`assignment`)
197 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
200 -- Table structure for table `tc_scheduling_priority`
202 CREATE TABLE `tc_scheduling_priority` (
203 `scheduling_priority` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
204 `priority` INT( 10 ) UNSIGNED NOT NULL DEFAULT '30',
205 `notes` VARCHAR( 128 ) NOT NULL DEFAULT ''
209 -- Table structure for table `tc_email_list`
211 CREATE TABLE `tc_email_list` (
212 `email_list` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
213 `name` VARCHAR( 128 ) NULL DEFAULT NULL
217 -- Table structure for table `tc_email_list_membership`
219 CREATE TABLE `tc_email_list_membership` (
220 `individual` INT( 16 ) UNSIGNED NULL DEFAULT NULL ,
221 `email_list` INT( 16 ) UNSIGNED NULL DEFAULT NULL
225 -- Table structure for table `tc_accomplishment`
227 CREATE TABLE `tc_accomplishment` (
228 `accomplishment` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
229 `individual` INT( 16 ) UNSIGNED NULL DEFAULT NULL ,
230 `date` DATE NULL DEFAULT NULL ,
231 `task` INT( 16 ) UNSIGNED NULL DEFAULT NULL ,
232 `note` VARCHAR( 128 ) NOT NULL
236 -- Table structure for table `tc_task`
238 CREATE TABLE `tc_task` (
239 `task` INT( 16 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
240 `name` VARCHAR( 128 ) NOT NULL ,
241 `description` VARCHAR( 128 ) NOT NULL