Merge branch 'test'
[eq/.git] / sql / eq.sql
1 -- MySQL dump 10.11
2 --
3 -- Host: localhost    Database: phpgroupware
4 -- ------------------------------------------------------
5
6 --
7 -- Current Database: `phpgroupware`
8 --
9
10 CREATE DATABASE /*!32312 IF NOT EXISTS*/ `phpgroupware` /*!40100 DEFAULT CHARACTER SET latin1 */;
11
12 USE `phpgroupware`;
13
14 --
15 -- Table structure for table `eq_aaronic`
16 --
17 CREATE TABLE `eq_aaronic` (
18   `aaronic` int(16) unsigned NOT NULL auto_increment,
19   `name` varchar(60) default NULL,
20   `phone` varchar(12) default NULL,
21   `valid` tinyint(1) default NULL,
22   PRIMARY KEY  (`aaronic`)
23 ) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=latin1;
24
25
26 --
27 -- Table structure for table `eq_activity`
28 --
29 CREATE TABLE `eq_activity` (
30   `activity` int(16) unsigned NOT NULL auto_increment,
31   `assignment` int(16) unsigned NOT NULL,
32   `date` date default NULL,
33   `notes` text,
34   PRIMARY KEY  (`activity`),
35   KEY `assignment` (`assignment`)
36 ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
37
38 --
39 -- Table structure for table `eq_appointment`
40 --
41 CREATE TABLE `eq_appointment` (
42   `appointment` int(16) unsigned NOT NULL auto_increment,
43   `presidency` int(16) unsigned NOT NULL default '0',
44   `family` int(16) unsigned default '0',
45   `elder` int(16) unsigned default '0',
46   `date` date NOT NULL default '0000-00-00',
47   `time` time NOT NULL default '00:00:00',
48   `uid` bigint(64) unsigned NOT NULL default '0',
49   PRIMARY KEY  (`appointment`)
50 ) ENGINE=MyISAM AUTO_INCREMENT=132 DEFAULT CHARSET=latin1;
51
52 --
53 -- Table structure for table `eq_assignment`
54 --
55 CREATE TABLE `eq_assignment` (
56   `assignment` int(12) unsigned NOT NULL auto_increment,
57   `name` varchar(60) NOT NULL,
58   `code` varchar(12) default NULL,
59   PRIMARY KEY  (`assignment`)
60 ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
61
62 --
63 -- Dumping data for table `eq_assignment`
64 --
65 LOCK TABLES `eq_assignment` WRITE;
66 /*!40000 ALTER TABLE `eq_assignment` DISABLE KEYS */;
67 INSERT INTO `eq_assignment` (`assignment`, `name`, `code`) 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');
68 /*!40000 ALTER TABLE `eq_assignment` ENABLE KEYS */;
69 UNLOCK TABLES;
70
71 --
72 -- Table structure for table `eq_attendance`
73 --
74 CREATE TABLE `eq_attendance` (
75   `elder` int(16) unsigned NOT NULL default '0',
76   `date` date default NULL,
77   KEY `elder` (`elder`)
78 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
79
80 --
81 -- Table structure for table `eq_calling`
82 --
83 CREATE TABLE `eq_calling` (
84   `indiv_id` int(16) unsigned default NULL,
85   `name` varchar(30) default NULL,
86   `organization` varchar(30) default NULL,
87   `position` varchar(30) default NULL,
88   `sequence` int(16) unsigned default NULL,
89   `sustained` varchar(30) default NULL,
90   KEY `indiv_id` (`indiv_id`)
91 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
92
93 --
94 -- Table structure for table `eq_child`
95 --
96 CREATE TABLE `eq_child` (
97   `child` int(16) unsigned NOT NULL auto_increment,
98   `family` int(16) unsigned default NULL,
99   `name` varchar(30) default NULL,
100   `birthday` date default NULL,
101   `indiv_id` int(16) unsigned default NULL,
102   `valid` tinyint(1) default NULL,
103   PRIMARY KEY  (`child`)
104 ) ENGINE=MyISAM AUTO_INCREMENT=260 DEFAULT CHARSET=latin1;
105
106 --
107 -- Table structure for table `eq_companionship`
108 --
109
110 CREATE TABLE `eq_companionship` (
111   `companionship` int(16) unsigned NOT NULL default '0',
112   `elder` int(16) unsigned NOT NULL default '0',
113   `aaronic` int(16) unsigned NOT NULL default '0',
114   `district` int(16) unsigned default NULL,
115   `valid` tinyint(1) default NULL,
116   KEY `companionship` (`companionship`)
117 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
118
119 --
120 -- Table structure for table `eq_district`
121 --
122 CREATE TABLE `eq_district` (
123   `district` int(16) unsigned NOT NULL default '0',
124   `name` varchar(30) default NULL,
125   `supervisor` int(16) unsigned default NULL,
126   `valid` tinyint(1) default NULL,
127   PRIMARY KEY  (`district`)
128 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
129
130 --
131 -- Table structure for table `eq_elder`
132 --
133 CREATE TABLE `eq_elder` (
134   `elder` int(16) unsigned NOT NULL auto_increment,
135   `name` varchar(60) default NULL,
136   `phone` varchar(12) default NULL,
137   `ppi_pri` int(10) unsigned NOT NULL default '1',
138   `ppi_notes` varchar(128) default NULL,
139   `int_pri` int(10) unsigned default '1',
140   `int_notes` varchar(128) default NULL,
141   `attending` tinyint(1) default '0',
142   `valid` tinyint(1) default NULL,
143   PRIMARY KEY  (`elder`)
144 ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1;
145
146 --
147 -- Table structure for table `eq_family`
148 --
149 CREATE TABLE `eq_family` (
150   `family` int(16) unsigned NOT NULL auto_increment,
151   `hofh_id` int(16) unsigned NOT NULL default '0',
152   `name` varchar(30) NOT NULL default '',
153   `name_id` varchar(30) NOT NULL default '',
154   `elder_id` int(16) unsigned default '0',
155   `companionship` int(16) unsigned default NULL,
156   `visit_pri` int(10) unsigned default '1',
157   `visit_notes` varchar(128) default NULL,
158   `valid` tinyint(1) default NULL,
159   PRIMARY KEY  (`family`)
160 ) ENGINE=MyISAM AUTO_INCREMENT=277 DEFAULT CHARSET=latin1;
161
162 --
163 -- Table structure for table `eq_parent`
164 --
165 CREATE TABLE `eq_parent` (
166   `parent` int(16) unsigned NOT NULL auto_increment,
167   `family` int(16) unsigned default NULL,
168   `name` varchar(30) default NULL,
169   `birthday` date default NULL,
170   `phone` varchar(12) default NULL,
171   `address` varchar(255) default NULL,
172   `indiv_id` int(16) unsigned default NULL,
173   `valid` tinyint(1) default NULL,
174   PRIMARY KEY  (`parent`)
175 ) ENGINE=MyISAM AUTO_INCREMENT=396 DEFAULT CHARSET=latin1;
176
177 --
178 -- Table structure for table `eq_participation`
179 --
180 CREATE TABLE `eq_participation` (
181   `elder` int(16) unsigned NOT NULL default '0',
182   `activity` int(16) unsigned default NULL,
183   UNIQUE KEY `activity_ndx` (`elder`,`activity`)
184 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
185
186 --
187 -- Table structure for table `eq_ppi`
188 --
189 CREATE TABLE `eq_ppi` (
190   `ppi` int(16) unsigned NOT NULL auto_increment,
191   `interviewer` int(16) unsigned default NULL,
192   `elder` int(16) unsigned default NULL,
193   `aaronic` int(16) unsigned NOT NULL default '0',
194   `date` date default NULL,
195   `notes` text,
196   `eqpresppi` tinyint(1) default '0',
197   PRIMARY KEY  (`ppi`)
198 ) ENGINE=MyISAM AUTO_INCREMENT=248 DEFAULT CHARSET=latin1;
199
200
201 --
202 -- Table structure for table `eq_presidency`
203 --
204 CREATE TABLE `eq_presidency` (
205   `presidency` int(16) unsigned NOT NULL auto_increment,
206   `elder` int(16) unsigned NOT NULL default '0',
207   `district` int(16) unsigned default '0',
208   `name` varchar(60) NOT NULL,
209   `email` varchar(60) NOT NULL,
210   `president` tinyint(1) default '0',
211   `counselor` tinyint(1) default '0',
212   `secretary` tinyint(1) default '0',
213   `eqpres` tinyint(1) default '0',
214   `valid` tinyint(1) default '1',
215   KEY `presidency` (`presidency`),
216   KEY `elder` (`elder`)
217 ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
218
219 --
220 -- Table structure for table `eq_visit`
221 --
222 CREATE TABLE `eq_visit` (
223   `visit` int(16) unsigned NOT NULL auto_increment,
224   `family` int(16) unsigned default NULL,
225   `companionship` int(16) unsigned default NULL,
226   `date` date default NULL,
227   `notes` text,
228   `visited` enum('y','n','') default NULL,
229   PRIMARY KEY  (`visit`)
230 ) ENGINE=MyISAM AUTO_INCREMENT=9513 DEFAULT CHARSET=latin1;
231
232 --
233 -- Table structure for table `eq_willingness`
234 --
235 CREATE TABLE `eq_willingness` (
236   `elder` int(16) unsigned NOT NULL,
237   `assignment` int(16) unsigned NOT NULL,
238   `willing` enum('y','n','') NOT NULL,
239   KEY `elder` (`elder`,`assignment`)
240 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;