X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;ds=inline;f=sql%2Ftc.sql;fp=sql%2Ftc.sql;h=8cbfdb2ea954cf0eedcb6b7c3d04730dbc5a0ab5;hb=e72d7ba6537f5e438dedd252ae8cd0b0f0ec08d8;hp=0000000000000000000000000000000000000000;hpb=2bed1fcce50cb61206535546a9563fa22430b54d;p=eq%2F.git diff --git a/sql/tc.sql b/sql/tc.sql new file mode 100644 index 0000000..8cbfdb2 --- /dev/null +++ b/sql/tc.sql @@ -0,0 +1,249 @@ +-- MySQL dump 10.11 +-- +-- Host: localhost Database: phpgroupware +-- ------------------------------------------------------ + +-- +-- Current Database: `phpgroupware` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `phpgroupware` /*!40100 DEFAULT CHARACTER SET latin1 */; + +USE `phpgroupware`; + +-- +-- Table structure for table `tc_aaronic` +-- +CREATE TABLE `tc_aaronic` ( + `aaronic` int(16) unsigned NOT NULL auto_increment, + `name` varchar(60) default NULL, + `phone` varchar(12) default NULL, + `email` varchar(120) default NULL, + `valid` tinyint(1) default NULL, + PRIMARY KEY (`aaronic`) +) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=latin1; + + +-- +-- Table structure for table `tc_activity` +-- +CREATE TABLE `tc_activity` ( + `activity` int(16) unsigned NOT NULL auto_increment, + `assignment` int(16) unsigned NOT NULL, + `date` date default NULL, + `notes` text, + PRIMARY KEY (`activity`), + KEY `assignment` (`assignment`) +) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_appointment` +-- +CREATE TABLE `tc_appointment` ( + `appointment` int(16) unsigned NOT NULL auto_increment, + `presidency` int(16) unsigned NOT NULL default '0', + `family` int(16) unsigned default '0', + `indiv` int(16) unsigned default '0', + `date` date NOT NULL default '0000-00-00', + `time` time NOT NULL default '00:00:00', + `location` varchar(120) default NULL, + `uid` bigint(64) unsigned NOT NULL default '0', + PRIMARY KEY (`appointment`) +) ENGINE=MyISAM AUTO_INCREMENT=132 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_assignment` +-- +CREATE TABLE `tc_assignment` ( + `assignment` int(12) unsigned NOT NULL auto_increment, + `name` varchar(60) NOT NULL, + `code` varchar(12) default NULL, + PRIMARY KEY (`assignment`) +) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `tc_assignment` +-- +LOCK TABLES `tc_assignment` WRITE; +/*!40000 ALTER TABLE `tc_assignment` DISABLE KEYS */; +INSERT INTO `tc_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'); +/*!40000 ALTER TABLE `tc_assignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tc_attendance` +-- +CREATE TABLE `tc_attendance` ( + `indiv` int(16) unsigned NOT NULL default '0', + `date` date default NULL, + KEY `indiv` (`indiv`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_calling` +-- +CREATE TABLE `tc_calling` ( + `indiv_id` int(16) unsigned default NULL, + `name` varchar(30) default NULL, + `organization` varchar(30) default NULL, + `position` varchar(30) default NULL, + `sequence` int(16) unsigned default NULL, + `sustained` varchar(30) default NULL, + KEY `indiv_id` (`indiv_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_child` +-- +CREATE TABLE `tc_child` ( + `child` int(16) unsigned NOT NULL auto_increment, + `family` int(16) unsigned default NULL, + `name` varchar(30) default NULL, + `birthday` date default NULL, + `indiv_id` int(16) unsigned default NULL, + `valid` tinyint(1) default NULL, + PRIMARY KEY (`child`) +) ENGINE=MyISAM AUTO_INCREMENT=260 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_companionship` +-- + +CREATE TABLE `tc_companionship` ( + `companionship` int(16) unsigned NOT NULL default '0', + `indiv` int(16) unsigned NOT NULL default '0', + `aaronic` int(16) unsigned NOT NULL default '0', + `district` int(16) unsigned default NULL, + `valid` tinyint(1) default NULL, + KEY `companionship` (`companionship`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_district` +-- +CREATE TABLE `tc_district` ( + `district` int(16) unsigned NOT NULL default '0', + `name` varchar(30) default NULL, + `supervisor` int(16) unsigned default NULL, + `valid` tinyint(1) default NULL, + PRIMARY KEY (`district`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_indiv` +-- +CREATE TABLE `tc_indiv` ( + `indiv` int(16) unsigned NOT NULL auto_increment, + `indiv_id` int(16) unsigned NOT NULL, + `name` varchar(60) default NULL, + `phone` varchar(12) default NULL, + `email` varchar(120) default NULL, + `priesthood` enum('High Priest','Elder','Priest','Teacher','Deacon','Unordained') DEFAULT NULL, + `prospective` enum('y','n') DEFAULT 'n', + `ppi_pri` int(10) unsigned NOT NULL default '1', + `ppi_notes` varchar(128) default NULL, + `int_pri` int(10) unsigned default '1', + `int_notes` varchar(128) default NULL, + `attending` tinyint(1) default '0', + `valid` tinyint(1) default NULL, + PRIMARY KEY (`indiv`) +) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_family` +-- +CREATE TABLE `tc_family` ( + `family` int(16) unsigned NOT NULL auto_increment, + `hofh_id` int(16) unsigned NOT NULL default '0', + `name` varchar(30) NOT NULL default '', + `name_id` varchar(30) NOT NULL default '', + `indiv_id` int(16) unsigned default '0', + `companionship` int(16) unsigned default NULL, + `visit_pri` int(10) unsigned default '1', + `visit_notes` varchar(128) default NULL, + `valid` tinyint(1) default NULL, + PRIMARY KEY (`family`) +) ENGINE=MyISAM AUTO_INCREMENT=277 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_parent` +-- +CREATE TABLE `tc_parent` ( + `parent` int(16) unsigned NOT NULL auto_increment, + `family` int(16) unsigned default NULL, + `name` varchar(30) default NULL, + `birthday` date default NULL, + `phone` varchar(12) default NULL, + `address` varchar(255) default NULL, + `indiv_id` int(16) unsigned default NULL, + `valid` tinyint(1) default NULL, + PRIMARY KEY (`parent`) +) ENGINE=MyISAM AUTO_INCREMENT=396 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_participation` +-- +CREATE TABLE `tc_participation` ( + `indiv` int(16) unsigned NOT NULL default '0', + `activity` int(16) unsigned default NULL, + UNIQUE KEY `activity_ndx` (`indiv`,`activity`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_interview` +-- +CREATE TABLE `tc_interview` ( + `interview` int(16) unsigned NOT NULL auto_increment, + `interviewer` int(16) unsigned default NULL, + `indiv` int(16) unsigned default NULL, + `aaronic` int(16) unsigned NOT NULL default '0', + `date` date default NULL, + `notes` text, + `interview_type` enum('hti','ppi') NOT NULL DEFAULT 'hti', + PRIMARY KEY (`ppi`) +) ENGINE=MyISAM AUTO_INCREMENT=248 DEFAULT CHARSET=latin1; + + +-- +-- Table structure for table `tc_presidency` +-- +CREATE TABLE `tc_presidency` ( + `presidency` int(16) unsigned NOT NULL auto_increment, + `indiv` int(16) unsigned NOT NULL default '0', + `district` int(16) unsigned default '0', + `name` varchar(60) NOT NULL, + `email` varchar(60) NOT NULL, + `president` tinyint(1) default '0', + `counselor` tinyint(1) default '0', + `secretary` tinyint(1) default '0', + `eqpres` tinyint(1) default '0', + `valid` tinyint(1) default '1', + KEY `presidency` (`presidency`), + KEY `indiv` (`indiv`) +) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_visit` +-- +CREATE TABLE `tc_visit` ( + `visit` int(16) unsigned NOT NULL auto_increment, + `family` int(16) unsigned default NULL, + `companionship` int(16) unsigned default NULL, + `companion1` int(16) unsigned default NULL, + `companion2` int(16) unsigned default NULL, + `date` date default NULL, + `notes` text, + `visited` enum('y','n','') default NULL, + `visit_type` enum('presidency','hometeaching') not null default 'hometeaching', + PRIMARY KEY (`visit`) +) ENGINE=MyISAM AUTO_INCREMENT=9513 DEFAULT CHARSET=latin1; + +-- +-- Table structure for table `tc_willingness` +-- +CREATE TABLE `tc_willingness` ( + `indiv` int(16) unsigned NOT NULL, + `assignment` int(16) unsigned NOT NULL, + `willing` enum('y','n','') NOT NULL, + KEY `indiv` (`indiv`,`assignment`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1;