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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 -- Table structure for table `tc_attendance`
54 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_attendance` (
55 `individual` int(16) unsigned NOT NULL default '0',
56 `date` date default NULL,
57 KEY `individual` (`individual`)
58 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
61 -- Table structure for table `tc_calling`
63 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_calling` (
64 `individual` int(16) unsigned default '0',
65 `organization` varchar(30) default NULL,
66 `position` varchar(30) default NULL,
67 `sustained` varchar(30) default NULL,
68 KEY `individual` (`individual`)
69 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
72 -- Table structure for table `tc_companion`
74 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_companion` (
75 `companion` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
76 `individual` INT( 16 ) UNSIGNED NOT NULL ,
77 `companionship` INT( 16 ) UNSIGNED NOT NULL ,
78 `scheduling_priority` INT( 16 ) UNSIGNED NOT NULL ,
79 `valid` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0'
83 -- Table structure for table `tc_companionship`
85 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_companionship` (
86 `companionship` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
87 `mls_id` INT( 16 ) UNSIGNED NULL DEFAULT NULL ,
88 `district` INT( 16 ) UNSIGNED NULL DEFAULT NULL ,
89 `valid` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '1'
93 -- Table structure for table `tc_district`
95 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_district` (
96 `district` int(16) unsigned NOT NULL default '0',
97 `supervisor` int(16) unsigned default NULL,
98 `valid` tinyint(1) default NULL,
99 PRIMARY KEY (`district`)
100 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
103 -- Table structure for table `tc_individual`
105 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_individual` (
106 `individual` int(16) unsigned NOT NULL auto_increment,
107 `mls_id` int(16) unsigned NOT NULL,
108 `name` varchar(60) default NULL,
109 `fullname` 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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `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 /*!42501 IF NOT EXISTS*/ `tc_task` (
239 `task` INT( 16 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
240 `name` VARCHAR( 128 ) NOT NULL ,
241 `description` VARCHAR( 128 ) NOT NULL
245 -- Table structure for table `tc_district_sandbox`
247 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_district_sandbox` (
248 `district` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
249 `supervisor` INT( 16 ) UNSIGNED NULL DEFAULT NULL
253 -- Table structure for table `tc_companion_sandbox`
255 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_companion_sandbox` (
256 `companion` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
257 `individual` INT( 16 ) UNSIGNED NOT NULL ,
258 `companionship` INT( 16 ) UNSIGNED NOT NULL
262 -- Table structure for table `tc_companionship_sandbox`
264 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_companionship_sandbox` (
265 `companionship` INT( 16 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
266 `district` INT( 16 ) UNSIGNED NULL DEFAULT NULL
270 -- Table structure for table `tc_family_sandbox`
272 CREATE TABLE /*!42501 IF NOT EXISTS*/ `tc_family_sandbox` (
273 `family` int(16) unsigned NOT NULL auto_increment,
274 `tc_family` int(16) unsigned default '0',
275 `individual` INT( 16 ) UNSIGNED NOT NULL ,
276 `companionship` int(16) unsigned default NULL,
277 PRIMARY KEY (`family`)