changed indiv fields to individual
[eq/.git] / bin / upgrade_3_0_to_4_0
1 #!/usr/bin/perl
2
3 use DBI;
4 use Getopt::Std;
5
6 $mydir = `cd \$(dirname $0) 2>/dev/null; pwd`; chomp($mydir);
7 unshift @INC,("$mydir/../setup");
8 if( -f "$mydir/../setup/db_config.local") { require "db_config.local"; }
9 else { require "db_config"; }
10
11 ###################################################
12 # Connect to the database
13 $dbh=DBI->connect("dbi:mysql:dbname=$dbname:host=$dbhost:port=$dbport",$dbuser,$dbpass,{
14     AutoCommit=>0,
15     PrintError=>0}) or print "Connect Failure:".$DBI::errstr."\n" and exit 2;
16 ###################################################
17
18 # Add a new 'email' field to the eq_aaronic table
19 $sth = $dbh->prepare("ALTER TABLE `eq_aaronic` ADD `email` VARCHAR( 120 ) NULL AFTER `phone`");
20 $sth->execute or die "-E- DB error: $DBI::errstr\n";
21
22 # Add a new 'priesthood' field to the eq_elder table
23 $sth = $dbh->prepare("ALTER TABLE `eq_elder` ADD `priesthood` enum('High Priest','Elder','Priest','Teacher','Deacon','Unordained') NULL AFTER `email`");
24 $sth->execute or die "-E- DB error: $DBI::errstr\n";
25
26 print "-> Done!\n";
27
28 ###################################################
29 # Disconnect from the database
30 $dbh->disconnect();
31 ###################################################
32
33