Index: openacs-4/packages/scholarship-fund/scholarship-fund.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/scholarship-fund/scholarship-fund.info,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/scholarship-fund/scholarship-fund.info 19 Jun 2005 06:05:08 -0000 1.1
+++ openacs-4/packages/scholarship-fund/scholarship-fund.info 3 Aug 2005 23:34:07 -0000 1.2
@@ -7,17 +7,18 @@
f
f
-
+
Solution Grove
Manage scholarships for dotlrn classes
Solution Grove
Manage scholarships for dotlrn classes
-
+
+
Index: openacs-4/packages/scholarship-fund/sql/postgresql/upgrade/upgrade-0.4d-0.5d.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/scholarship-fund/sql/postgresql/upgrade/upgrade-0.4d-0.5d.sql,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/packages/scholarship-fund/sql/postgresql/upgrade/upgrade-0.4d-0.5d.sql 3 Aug 2005 23:34:07 -0000 1.1
@@ -0,0 +1,17 @@
+--
+-- packages/scholarship-fund/sql/postgresql/upgrade-0.1d-0.1d1.sql
+--
+-- @author Roel Canicula (roelmc@pldtdsl.net)
+-- @creation-date 2005-08-03
+-- @arch-tag: abd54f8f-d9cc-4590-8f1c-c23cd8587484
+-- @cvs-id $Id: upgrade-0.4d-0.5d.sql,v 1.1 2005/08/03 23:34:07 roelc Exp $
+--
+
+create table scholarship_fund_grants (
+ grant_id serial primary key,
+ fund_id integer references scholarship_fund on delete cascade not null,
+ user_id integer references users on delete cascade not null,
+ grant_date timestamp default current_timestamp not null,
+ gift_certificate_id integer references ec_gift_certificates not null,
+ grant_amount float not null
+);
\ No newline at end of file
Index: openacs-4/packages/scholarship-fund/tcl/scholarship-funds-install-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/scholarship-fund/tcl/scholarship-funds-install-procs.tcl,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/scholarship-fund/tcl/scholarship-funds-install-procs.tcl 3 Aug 2005 22:58:58 -0000 1.3
+++ openacs-4/packages/scholarship-fund/tcl/scholarship-funds-install-procs.tcl 3 Aug 2005 23:34:07 -0000 1.4
@@ -98,7 +98,7 @@
} {
apm_upgrade_logic \
-from_version_name $from_version_name \
- -to_version_name $to_ersion_name \
+ -to_version_name $to_version_name \
-spec {
0.1d 0.1d1 {
content::type::attribute::new \