forked from science-ation/science-ation
Setup defaults in config and dates table to be year=-1
The config and dates pages now need to be updated to read defaults, and insert new config parameters as FAIRYEAR if they dont exist already Bumped version to 7
This commit is contained in:
parent
65954a35b9
commit
abf46c9e7c
@ -1 +1 @@
|
||||
6
|
||||
7
|
||||
|
766
db/db.full.7.sql
Normal file
766
db/db.full.7.sql
Normal file
@ -0,0 +1,766 @@
|
||||
-- phpMyAdmin SQL Dump
|
||||
-- version 2.6.0-rc2
|
||||
-- http://www.phpmyadmin.net
|
||||
--
|
||||
-- Host: localhost
|
||||
-- Generation Time: May 26, 2005 at 04:29 PM
|
||||
-- Server version: 4.0.24
|
||||
-- PHP Version: 4.3.11
|
||||
--
|
||||
-- Database: `sfiab`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_awards`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_awards` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_sponsors_id` int(10) unsigned NOT NULL default '0',
|
||||
`award_types_id` int(10) unsigned NOT NULL default '0',
|
||||
`name` varchar(128) NOT NULL default '',
|
||||
`criteria` text NOT NULL,
|
||||
`presenter` varchar(128) NOT NULL default '',
|
||||
`order` int(11) NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `award_sponsors_id` (`award_sponsors_id`),
|
||||
KEY `award_types_id` (`award_types_id`),
|
||||
KEY `id` (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_awards_projectcategories`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_awards_projectcategories` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_awards_id` int(10) unsigned NOT NULL default '0',
|
||||
`projectcategories_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `year` (`year`),
|
||||
KEY `award_awards_id` (`award_awards_id`),
|
||||
KEY `projectcategories_id` (`projectcategories_id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_awards_projectdivisions`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_awards_projectdivisions` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_awards_id` int(10) unsigned NOT NULL default '0',
|
||||
`projectdivisions_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `award_awards_id` (`award_awards_id`),
|
||||
KEY `projectdivisions_id` (`projectdivisions_id`),
|
||||
KEY `year` (`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_contacts`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_contacts` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_sponsors_id` int(10) unsigned NOT NULL default '0',
|
||||
`firstname` varchar(32) NOT NULL default '',
|
||||
`lastname` varchar(32) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`phonehome` varchar(32) NOT NULL default '',
|
||||
`phonework` varchar(32) NOT NULL default '',
|
||||
`phonecell` varchar(32) NOT NULL default '',
|
||||
`fax` varchar(32) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
`notes` text NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `award_sponsors_id` (`award_sponsors_id`),
|
||||
KEY `year` (`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_prizes`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_prizes` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_awards_id` int(10) unsigned NOT NULL default '0',
|
||||
`cash` int(11) NOT NULL default '0',
|
||||
`scholarship` int(11) NOT NULL default '0',
|
||||
`prize` varchar(128) NOT NULL default '',
|
||||
`number` int(11) NOT NULL default '0',
|
||||
`order` int(11) NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `award_awards_id` (`award_awards_id`),
|
||||
KEY `year` (`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_sponsors`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_sponsors` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`organization` varchar(128) NOT NULL default '',
|
||||
`phone` varchar(32) NOT NULL default '',
|
||||
`fax` varchar(32) NOT NULL default '',
|
||||
`email` varchar(32) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
`address` varchar(128) NOT NULL default '',
|
||||
`city` varchar(64) NOT NULL default '',
|
||||
`province_code` char(2) NOT NULL default '',
|
||||
`postalcode` varchar(8) NOT NULL default '',
|
||||
`notes` text NOT NULL,
|
||||
`confirmed` enum('no','yes') NOT NULL default 'no',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `id` (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `award_types`
|
||||
--
|
||||
|
||||
CREATE TABLE `award_types` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`type` varchar(64) NOT NULL default '',
|
||||
`order` int(11) NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `committees`
|
||||
--
|
||||
|
||||
CREATE TABLE `committees` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`name` varchar(128) NOT NULL default '',
|
||||
`ord` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `committees_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `committees_link` (
|
||||
`committees_id` int(10) unsigned NOT NULL default '0',
|
||||
`committees_members_id` int(10) unsigned NOT NULL default '0',
|
||||
`title` varchar(128) NOT NULL default '',
|
||||
`ord` tinyint(3) unsigned NOT NULL default '0'
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `committees_members`
|
||||
--
|
||||
|
||||
CREATE TABLE `committees_members` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`name` varchar(128) NOT NULL default '',
|
||||
`organization` varchar(128) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`password` varchar(32) NOT NULL default '',
|
||||
`emailprivate` varchar(128) NOT NULL default '',
|
||||
`phonehome` varchar(32) NOT NULL default '',
|
||||
`phonework` varchar(32) NOT NULL default '',
|
||||
`phonecell` varchar(32) NOT NULL default '',
|
||||
`fax` varchar(32) NOT NULL default '',
|
||||
`ord` int(11) NOT NULL default '0',
|
||||
`displayemail` enum('N','Y') NOT NULL default 'N',
|
||||
`access_admin` enum('N','Y') NOT NULL default 'Y',
|
||||
`access_config` enum('N','Y') NOT NULL default 'N',
|
||||
`access_super` enum('N','Y') NOT NULL default 'N',
|
||||
`deleted` enum('N','Y') NOT NULL default 'N',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `config`
|
||||
--
|
||||
|
||||
CREATE TABLE `config` (
|
||||
`var` varchar(64) NOT NULL default '',
|
||||
`val` text NOT NULL,
|
||||
`description` text NOT NULL,
|
||||
`year` int(11) NOT NULL default '0'
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `dates`
|
||||
--
|
||||
|
||||
CREATE TABLE `dates` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`name` varchar(32) NOT NULL default '',
|
||||
`description` varchar(64) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `emails`
|
||||
--
|
||||
|
||||
CREATE TABLE `emails` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`val` varchar(64) NOT NULL default '',
|
||||
`name` varchar(128) NOT NULL default '',
|
||||
`description` varchar(255) NOT NULL default '',
|
||||
`from` varchar(128) NOT NULL default '',
|
||||
`subject` varchar(128) NOT NULL default '',
|
||||
`body` text NOT NULL,
|
||||
`type` enum('system','user') NOT NULL default 'system',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `val` (`val`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `emergencycontact`
|
||||
--
|
||||
|
||||
CREATE TABLE `emergencycontact` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`registrations_id` int(10) unsigned NOT NULL default '0',
|
||||
`students_id` int(10) unsigned NOT NULL default '0',
|
||||
`firstname` varchar(64) NOT NULL default '',
|
||||
`lastname` varchar(64) NOT NULL default '',
|
||||
`relation` varchar(64) NOT NULL default '',
|
||||
`phone1` varchar(32) NOT NULL default '',
|
||||
`phone2` varchar(32) NOT NULL default '',
|
||||
`phone3` varchar(32) NOT NULL default '',
|
||||
`phone4` varchar(32) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`firstname` varchar(32) NOT NULL default '',
|
||||
`lastname` varchar(32) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`password` varchar(32) NOT NULL default '',
|
||||
`passwordexpiry` date default NULL,
|
||||
`phonehome` varchar(32) NOT NULL default '',
|
||||
`phonework` varchar(32) NOT NULL default '',
|
||||
`phoneworkext` varchar(16) NOT NULL default '',
|
||||
`phonecell` varchar(32) NOT NULL default '',
|
||||
`organization` varchar(64) NOT NULL default '',
|
||||
`created` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`lastlogin` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`address` varchar(64) NOT NULL default '',
|
||||
`address2` varchar(64) NOT NULL default '',
|
||||
`city` varchar(64) NOT NULL default '',
|
||||
`province` varchar(32) NOT NULL default '',
|
||||
`postalcode` varchar(8) NOT NULL default '',
|
||||
`catpref` int(10) unsigned default NULL,
|
||||
`divpref` int(10) unsigned default NULL,
|
||||
`highest_psd` varchar(128) NOT NULL default '',
|
||||
`professional_quals` varchar(128) NOT NULL default '',
|
||||
`years_school` tinyint(3) unsigned NOT NULL default '0',
|
||||
`years_regional` tinyint(3) unsigned NOT NULL default '0',
|
||||
`years_national` tinyint(3) unsigned NOT NULL default '0',
|
||||
`willing_chair` enum('no','yes') NOT NULL default 'no',
|
||||
`attending_lunch` enum('no','yes') NOT NULL default 'yes',
|
||||
`expertise_other` text,
|
||||
`deleted` enum('no','yes') NOT NULL default 'no',
|
||||
`deleteddatetime` datetime default NULL,
|
||||
`complete` enum('no','yes') NOT NULL default 'no',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_expertise`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_expertise` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`judges_id` int(10) unsigned NOT NULL default '0',
|
||||
`projectdivisions_id` int(10) unsigned default NULL,
|
||||
`projectsubdivisions_id` int(10) unsigned default NULL,
|
||||
`val` tinyint(3) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_languages`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_languages` (
|
||||
`judges_id` int(10) unsigned NOT NULL default '0',
|
||||
`languages_lang` char(2) NOT NULL default '',
|
||||
PRIMARY KEY (`judges_id`,`languages_lang`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_teams`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_teams` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`num` int(10) unsigned NOT NULL default '0',
|
||||
`name` varchar(255) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `num` (`num`,`year`),
|
||||
UNIQUE KEY `name` (`name`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_teams_awards_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_teams_awards_link` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_awards_id` int(10) unsigned NOT NULL default '0',
|
||||
`judges_teams_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `award_awards_id` (`award_awards_id`,`judges_teams_id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_teams_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_teams_link` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`judges_id` int(11) NOT NULL default '0',
|
||||
`judges_teams_id` int(11) NOT NULL default '0',
|
||||
`captain` enum('no','yes') NOT NULL default 'no',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_teams_timeslots_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_teams_timeslots_link` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`judges_teams_id` int(10) unsigned NOT NULL default '0',
|
||||
`judges_timeslots_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `judges_teams_id` (`judges_teams_id`,`judges_timeslots_id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_teams_timeslots_projects_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_teams_timeslots_projects_link` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`judges_teams_id` int(10) unsigned NOT NULL default '0',
|
||||
`judges_timeslots_id` int(10) unsigned NOT NULL default '0',
|
||||
`projects_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `judges_teams_id` (`judges_teams_id`,`judges_timeslots_id`,`projects_id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_timeslots`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_timeslots` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`date` date NOT NULL default '0000-00-00',
|
||||
`starttime` time NOT NULL default '00:00:00',
|
||||
`endtime` time NOT NULL default '00:00:00',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `judges_years`
|
||||
--
|
||||
|
||||
CREATE TABLE `judges_years` (
|
||||
`judges_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`judges_id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `languages`
|
||||
--
|
||||
|
||||
CREATE TABLE `languages` (
|
||||
`lang` char(2) NOT NULL default '',
|
||||
`langname` varchar(32) NOT NULL default '',
|
||||
`active` enum('N','Y') NOT NULL default 'N',
|
||||
UNIQUE KEY `lang` (`lang`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `mentors`
|
||||
--
|
||||
|
||||
CREATE TABLE `mentors` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`registrations_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
`firstname` varchar(64) NOT NULL default '',
|
||||
`lastname` varchar(64) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`phone` varchar(32) NOT NULL default '',
|
||||
`organization` varchar(128) NOT NULL default '',
|
||||
`position` varchar(128) NOT NULL default '',
|
||||
`description` text NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `pagetext`
|
||||
--
|
||||
|
||||
CREATE TABLE `pagetext` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`textname` varchar(64) NOT NULL default '',
|
||||
`text` text NOT NULL,
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `textname` (`textname`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `project_specialawards_link`
|
||||
--
|
||||
|
||||
CREATE TABLE `project_specialawards_link` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`award_awards_id` int(10) unsigned NOT NULL default '0',
|
||||
`projects_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `projectcategories`
|
||||
--
|
||||
|
||||
CREATE TABLE `projectcategories` (
|
||||
`id` int(10) unsigned NOT NULL default '0',
|
||||
`category` varchar(64) NOT NULL default '',
|
||||
`mingrade` tinyint(4) NOT NULL default '0',
|
||||
`maxgrade` tinyint(4) NOT NULL default '0',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `projectdivisions`
|
||||
--
|
||||
|
||||
CREATE TABLE `projectdivisions` (
|
||||
`id` int(10) unsigned NOT NULL default '0',
|
||||
`division` varchar(64) NOT NULL default '',
|
||||
`division_shortform` char(3) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `projectdivisionsselector`
|
||||
--
|
||||
|
||||
CREATE TABLE `projectdivisionsselector` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`question` varchar(255) NOT NULL default '',
|
||||
`yes` int(10) unsigned NOT NULL default '0',
|
||||
`yes_type` enum('question','division') NOT NULL default 'question',
|
||||
`no` int(10) unsigned NOT NULL default '0',
|
||||
`no_type` enum('question','division') NOT NULL default 'question',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `projects`
|
||||
--
|
||||
|
||||
CREATE TABLE `projects` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`registrations_id` int(10) unsigned NOT NULL default '0',
|
||||
`projectnumber` varchar(16) default NULL,
|
||||
`projectcategories_id` tinyint(4) NOT NULL default '0',
|
||||
`projectdivisions_id` tinyint(4) NOT NULL default '0',
|
||||
`title` varchar(255) NOT NULL default '',
|
||||
`summary` text NOT NULL,
|
||||
`year` int(11) NOT NULL default '0',
|
||||
`req_electricity` enum('no','yes') NOT NULL default 'no',
|
||||
`req_table` enum('no','yes') NOT NULL default 'yes',
|
||||
`req_special` varchar(128) NOT NULL default '',
|
||||
`language` char(2) NOT NULL default '',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `projectsubdivisions`
|
||||
--
|
||||
|
||||
CREATE TABLE `projectsubdivisions` (
|
||||
`id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(11) unsigned NOT NULL default '0',
|
||||
`projectdivisions_id` int(10) unsigned NOT NULL default '0',
|
||||
`subdivision` varchar(128) NOT NULL default '',
|
||||
PRIMARY KEY (`id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `provinces`
|
||||
--
|
||||
|
||||
CREATE TABLE `provinces` (
|
||||
`code` char(2) NOT NULL default '',
|
||||
`province` varchar(32) NOT NULL default '',
|
||||
UNIQUE KEY `code` (`code`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `registrations`
|
||||
--
|
||||
|
||||
CREATE TABLE `registrations` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`num` varchar(8) NOT NULL default '',
|
||||
`email` varchar(64) NOT NULL default '',
|
||||
`start` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`status` enum('new','open','paymentpending','complete') NOT NULL default 'new',
|
||||
`end` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
`nummentors` tinyint(4) default NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `safety`
|
||||
--
|
||||
|
||||
CREATE TABLE `safety` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`registrations_id` int(10) unsigned NOT NULL default '0',
|
||||
`safetyquestions_id` int(10) unsigned NOT NULL default '0',
|
||||
`answer` varchar(32) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `safetyquestions`
|
||||
--
|
||||
|
||||
CREATE TABLE `safetyquestions` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
`question` text NOT NULL,
|
||||
`type` enum('check','yesno') NOT NULL default 'check',
|
||||
`required` enum('no','yes') NOT NULL default 'yes',
|
||||
`ord` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `schools`
|
||||
--
|
||||
|
||||
CREATE TABLE `schools` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`school` varchar(64) NOT NULL default '',
|
||||
`phone` varchar(16) NOT NULL default '',
|
||||
`fax` varchar(16) NOT NULL default '',
|
||||
`address` varchar(64) NOT NULL default '',
|
||||
`city` varchar(32) NOT NULL default '',
|
||||
`province_code` char(2) NOT NULL default '',
|
||||
`postalcode` varchar(7) NOT NULL default '',
|
||||
`sciencehead` varchar(64) NOT NULL default '',
|
||||
`scienceheademail` varchar(128) NOT NULL default '',
|
||||
`scienceheadphone` varchar(32) NOT NULL default '',
|
||||
`accesscode` varchar(32) NOT NULL default '',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
`lastlogin` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`junior` tinyint(4) NOT NULL default '0',
|
||||
`intermediate` tinyint(4) NOT NULL default '0',
|
||||
`senior` tinyint(4) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `students`
|
||||
--
|
||||
|
||||
CREATE TABLE `students` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`registrations_id` int(10) unsigned NOT NULL default '0',
|
||||
`firstname` varchar(64) NOT NULL default '',
|
||||
`lastname` varchar(64) NOT NULL default '',
|
||||
`sex` enum('male','female') NOT NULL default 'male',
|
||||
`address` varchar(255) NOT NULL default '',
|
||||
`city` varchar(64) NOT NULL default '',
|
||||
`province` varchar(32) NOT NULL default '',
|
||||
`postalcode` varchar(8) NOT NULL default '',
|
||||
`phone` varchar(64) NOT NULL default '',
|
||||
`email` varchar(128) NOT NULL default '',
|
||||
`grade` tinyint(3) unsigned NOT NULL default '0',
|
||||
`dateofbirth` date NOT NULL default '0000-00-00',
|
||||
`age` tinyint(3) unsigned NOT NULL default '0',
|
||||
`lang` char(2) NOT NULL default '',
|
||||
`year` int(11) NOT NULL default '0',
|
||||
`schools_id` int(10) unsigned NOT NULL default '0',
|
||||
`tshirt` enum('small','medium','large','xlarge') NOT NULL default 'medium',
|
||||
`medicalalert` varchar(255) NOT NULL default '',
|
||||
`foodreq` varchar(255) NOT NULL default '',
|
||||
`teachername` varchar(64) NOT NULL default '',
|
||||
`teacheremail` varchar(128) NOT NULL default '',
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `translations`
|
||||
--
|
||||
|
||||
CREATE TABLE `translations` (
|
||||
`lang` char(2) NOT NULL default '',
|
||||
`strmd5` varchar(32) NOT NULL default '',
|
||||
`str` text NOT NULL,
|
||||
`val` text NOT NULL,
|
||||
PRIMARY KEY (`strmd5`),
|
||||
KEY `strmd5` (`strmd5`),
|
||||
KEY `lang` (`lang`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `winners`
|
||||
--
|
||||
|
||||
CREATE TABLE `winners` (
|
||||
`id` int(10) unsigned NOT NULL auto_increment,
|
||||
`awards_prizes_id` int(10) unsigned NOT NULL default '0',
|
||||
`projects_id` int(10) unsigned NOT NULL default '0',
|
||||
`year` int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `awards_prizes_id` (`awards_prizes_id`,`projects_id`,`year`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('fairname', '', 'Name of the fair', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('default_language', 'en', 'The default language if no language has yet been specified', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minstudentsperproject', '1', 'The minimum number of students that can work on a project (usually 1)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxstudentsperproject', '2', 'The maximum number of students that can work on a project (Usually 2)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('mingrade', '7', 'The minimum school grade that can enter a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxgrade', '12', 'The maximum school grade that can enter a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minage', '10', 'The minimum age of the students', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxage', '21', 'The maximum age of the students', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxmentorsperproject', '5', 'The maximum number of mentors that can help with a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minmentorsperproject', '0', 'The minimum number of mentors that can help with a project (usually 0)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('usedivisionselector', 'yes', 'Specify whether to use the division selector flowchart questions to help decide on the division (yes/no)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minjudgeage', '21', 'The minimum age that a person must be in order to be a judge.', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxjudgeage', '100', 'The maximum age that a person can be in order to be a judge', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('participant_student_foodreq', 'yes', 'Ask for students special food requirements (yes/no). Should be yes if you plan on providing lunch', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('regfee', '', 'Registration Fee', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('regfee_per', 'student', 'Registration fee is per student, or per project? (student/project)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('project_num_format', 'CDN', 'C=Category, D=Divison, N=2 digit Number', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('committee_publiclayout', '<tr><td> <b>name</b></td><td>title</td><td>email</td></tr>', 'The layout (html table row) used to display the committee members on the public committee page', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('judges_password_expiry_days', '365', 'Judges passwords expire and they are forced to choose a new one after this many days. (0 for no expiry)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxspecialawardsperproject', '7', 'The maximum number of self-nominated special awards a project can sign-up for', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('specialawardnomination', 'date', 'Self nominations for special awards are due either with registration or on a specific date. (date|registration). If "date" is used, it must be configured under "Important Dates" section.', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('fairmanageremail', '', 'The email address of the ''fair manager''. Any important emails etc generated by the system will be sent here', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (1, '', 'fairdate', 'Date of the fair', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (2, '', 'regopen', 'Registration system opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (3, '', 'regclose', 'Registration system closes', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (4, '', 'postparticipants', 'Registered participants are posted on the website', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (5, '', 'postwinners', 'Winners are posted on the website', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (6, '', 'judgeregopen', 'Judges registration opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (7, '', 'judgeregclose', 'Judges registration closes', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (8, '', 'specawardregopen', 'Special Awards self-nomination opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (9, '', 'specawardregclose', 'Special Awards self-nomination closes', -1);
|
31
db/db.update.7.sql
Normal file
31
db/db.update.7.sql
Normal file
@ -0,0 +1,31 @@
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('fairname', '', 'Name of the fair', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('default_language', 'en', 'The default language if no language has yet been specified', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minstudentsperproject', '1', 'The minimum number of students that can work on a project (usually 1)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxstudentsperproject', '2', 'The maximum number of students that can work on a project (Usually 2)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('mingrade', '7', 'The minimum school grade that can enter a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxgrade', '12', 'The maximum school grade that can enter a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minage', '10', 'The minimum age of the students', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxage', '21', 'The maximum age of the students', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxmentorsperproject', '5', 'The maximum number of mentors that can help with a project', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minmentorsperproject', '0', 'The minimum number of mentors that can help with a project (usually 0)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('usedivisionselector', 'yes', 'Specify whether to use the division selector flowchart questions to help decide on the division (yes/no)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('minjudgeage', '21', 'The minimum age that a person must be in order to be a judge.', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxjudgeage', '100', 'The maximum age that a person can be in order to be a judge', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('participant_student_foodreq', 'yes', 'Ask for students special food requirements (yes/no). Should be yes if you plan on providing lunch', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('regfee', '', 'Registration Fee', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('regfee_per', 'student', 'Registration fee is per student, or per project? (student/project)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('project_num_format', 'CDN', 'C=Category, D=Divison, N=2 digit Number', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('committee_publiclayout', '<tr><td> <b>name</b></td><td>title</td><td>email</td></tr>', 'The layout (html table row) used to display the committee members on the public committee page', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('judges_password_expiry_days', '365', 'Judges passwords expire and they are forced to choose a new one after this many days. (0 for no expiry)', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('maxspecialawardsperproject', '7', 'The maximum number of self-nominated special awards a project can sign-up for', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('specialawardnomination', 'date', 'Self nominations for special awards are due either with registration or on a specific date. (date|registration). If "date" is used, it must be configured under "Important Dates" section.', -1);
|
||||
INSERT INTO `config` (`var`, `val`, `description`, `year`) VALUES ('fairmanageremail', '', 'The email address of the ''fair manager''. Any important emails etc generated by the system will be sent here', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (1, '', 'fairdate', 'Date of the fair', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (2, '', 'regopen', 'Registration system opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (3, '', 'regclose', 'Registration system closes', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (4, '', 'postparticipants', 'Registered participants are posted on the website', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (5, '', 'postwinners', 'Winners are posted on the website', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (6, '', 'judgeregopen', 'Judges registration opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (7, '', 'judgeregclose', 'Judges registration closes', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (8, '', 'specawardregopen', 'Special Awards self-nomination opens', -1);
|
||||
INSERT INTO `dates` (`id`, `date`, `name`, `description`, `year`) VALUES (9, '', 'specawardregclose', 'Special Awards self-nomination closes', -1);
|
30
install3.php
30
install3.php
@ -42,7 +42,7 @@ require_once("data/config.inc.php");
|
||||
mysql_connect($DBHOST,$DBUSER,$DBPASS);
|
||||
mysql_select_db($DBNAME);
|
||||
|
||||
echo "Checking for existing SFIAB database... ";
|
||||
echo "Checking for SFIAB database... ";
|
||||
if(file_exists("db/db.db.version.txt"))
|
||||
{
|
||||
$dbdbversion_file=file("db/db.db.version.txt");
|
||||
@ -82,6 +82,34 @@ if(mysql_num_rows($q))
|
||||
echo "</body></html>";
|
||||
exit;
|
||||
}
|
||||
echo "<b>Found!</b><br />";
|
||||
|
||||
echo "<br />";
|
||||
echo "Please enter the following options <br />";
|
||||
echo "<br />";
|
||||
|
||||
$month=date("m");
|
||||
if($month>4) $fairyearsuggest=date("Y")+1;
|
||||
else $fairyearsuggest=date("Y");
|
||||
echo "<h3>Options</h3>";
|
||||
|
||||
echo "<table>";
|
||||
echo "<tr><td>Fair Year</td><td><input size=\"8\" type=\"text\" name=\"fairyear\" value=\"$fairyearsuggest\"></td><td>The year of the fair you are installing SFIAB to run</td></tr>";
|
||||
|
||||
$directorysuggest=substr($_SERVER['REQUEST_URI'],0,-13);
|
||||
echo "<tr><td>Directory</td><td><input size=\"25\" type=\"text\" name=\"sfiabdirectory\" value=\"$directorysuggest\"></td><td>The directory of this SFIAB installation as seen by the web browser</td></tr>";
|
||||
|
||||
echo "</table>";
|
||||
echo "<br />";
|
||||
echo "<h3>Age Categories</h3>";
|
||||
echo "<input checked=\"checked\" type=\"radio\" name=\"categories\" value=\"default\">Create default age categories (same as CWSF) <br />";
|
||||
echo "<input type=\"radio\" name=\"categories\" value=\"none\">Do not create any age categories <br />";
|
||||
|
||||
echo "<br />";
|
||||
echo "<h3>Divisions</h3>";
|
||||
echo "<input checked=\"checked\" type=\"radio\" name=\"divisions\" value=\"default\">Create default divisions (same as CWSF) <br />";
|
||||
echo "<input type=\"radio\" name=\"divisions\" value=\"none\">Do not create any divisions<br />";
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user