From 9bb5465ac2346e17750372809a2decd3c921f531 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 2 Oct 2009 17:24:53 +0000 Subject: [PATCH] Oops commit the db files too --- db/db.update.142.php | 19 +++++++++++++++++++ db/db.update.142.sql | 30 ++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 db/db.update.142.php create mode 100644 db/db.update.142.sql diff --git a/db/db.update.142.php b/db/db.update.142.php new file mode 100644 index 0000000..c084ce9 --- /dev/null +++ b/db/db.update.142.php @@ -0,0 +1,19 @@ +6) $fiscalyearsuggest=date("Y")+1; + else $fiscalyearsuggest=date("Y"); + mysql_query("INSERT INTO `config` ( `var` , `val` , `category` , `type` , `type_values` , `ord` , `description` , `year`) VALUES ( 'FISCALYEAR', '$fiscalyearsuggest', 'Special', '', '', '0', 'The current fiscal year that the fundraising module is using', '0')"); + } + +} + +?> diff --git a/db/db.update.142.sql b/db/db.update.142.sql new file mode 100644 index 0000000..f27f11a --- /dev/null +++ b/db/db.update.142.sql @@ -0,0 +1,30 @@ +CREATE TABLE `fundraising_campaigns` ( +`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , +`name` VARCHAR( 128 ) NOT NULL , +`type` VARCHAR( 64 ) NOT NULL , +`startdate` DATE NOT NULL, +`enddate` DATE NOT NULL, +`active` ENUM( 'no', 'yes' ) NOT NULL , +`target` INT NOT NULL, +`fundraising_goals_id` INT UNSIGNED NOT NULL, +`fiscalyear` INT NOT NULL +) ENGINE = MYISAM ; + +CREATE TABLE `fundraising_campaigns_segments` ( +`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , +`fundraising_campaigns_id` INT UNSIGNED NOT NULL , +`segment` VARCHAR( 128 ) NOT NULL +) ENGINE = MYISAM ; + +RENAME TABLE `sponsorships_levels` TO `fundraising_donor_levels`; +ALTER TABLE `fundraising_donor_levels` CHANGE `year` `fiscalyear` INT( 11 ) NOT NULL DEFAULT '0'; +RENAME TABLE `fundraising` TO `fundraising_goals`; +ALTER TABLE `fundraising_goals` CHANGE `year` `fiscalyear` INT( 11 ) NOT NULL DEFAULT '0'; +RENAME TABLE `sponsors_logs` TO `fundraising_donor_logs`; +RENAME TABLE `sponsorships` TO `fundraising_donations`; +ALTER TABLE `fundraising_donations` CHANGE `year` `fiscalyear` INT( 11 ) NOT NULL DEFAULT '0'; +ALTER TABLE `fundraising_goals` CHANGE `goal` `budget` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `fundraising_goals` CHANGE `type` `goal` VARCHAR( 32 ) NOT NULL; +ALTER TABLE `fundraising_donations` CHANGE `fundraising_type` `fundraising_goal` VARCHAR( 32 ) NOT NULL; +ALTER TABLE `fundraising_goals` ADD `deadline` DATE NOT NULL; +ALTER TABLE `fundraising_donations` ADD `fundraising_campaigns_id` INT NOT NULL AFTER `fundraising_goal`;