diff --git a/sql/grantprograms_disable.sql b/sql/grantprograms_disable.sql
index 07e68d6579ef8c655d92cbc658ddc85a3aac70bc..a60b88350f2d7259d00e20ab244323195d3a1e6e 100644
--- a/sql/grantprograms_disable.sql
+++ b/sql/grantprograms_disable.sql
@@ -44,4 +44,4 @@ UPDATE civicrm_financial_type SET is_active = 0 WHERE  name = 'NEI Grant';
 -- RG-212
 UPDATE  civicrm_option_group cog INNER JOIN civicrm_option_value cov ON cov.option_group_id = cog.id 
 SET cov.is_active = 0
-WHERE  cog.name = 'activity_type' AND cov.name = 'grant_status_change';
+WHERE  cog.name = 'activity_type' AND cov.name IN ('grant_status_change', 'grant_payment');
diff --git a/sql/grantprograms_enable.sql b/sql/grantprograms_enable.sql
index bbc1dc757c813bc6d0b98964ff7d49696594582e..d59387fbd8a615e76078215ce01c294c446df036 100644
--- a/sql/grantprograms_enable.sql
+++ b/sql/grantprograms_enable.sql
@@ -44,4 +44,4 @@ UPDATE civicrm_financial_type SET is_active = 1 WHERE  name = 'NEI Grant';
 -- RG-212
 UPDATE  civicrm_option_group cog INNER JOIN civicrm_option_value cov ON cov.option_group_id = cog.id 
 SET cov.is_active = 1
-WHERE  cog.name = 'activity_type' AND cov.name = 'grant_status_change';
\ No newline at end of file
+WHERE  cog.name = 'activity_type' AND cov.name IN ('grant_status_change', 'grant_payment');
\ No newline at end of file
diff --git a/sql/grantprograms_install.sql b/sql/grantprograms_install.sql
index abd536c5e761901959894fb99a979a3ca64ea60c..e838c352e087822251d155f6acdf63c88f71408f 100755
--- a/sql/grantprograms_install.sql
+++ b/sql/grantprograms_install.sql
@@ -350,5 +350,6 @@ VALUES
 SELECT @activityType := cog.id, @value := max(cast(value as unsigned)) + 1 FROM civicrm_option_group cog INNER JOIN civicrm_option_value cov ON cov.option_group_id = cog.id WHERE  cog.name = 'activity_type';
 
 INSERT INTO civicrm_option_value(option_group_id, label, value, name, grouping, filter, is_default, weight, description, is_optgroup, is_reserved, is_active, component_id, visibility_id) 
-VALUES (@activityType, 'Grant Status Change', @value, 'grant_status_change', NULL, 0, 0, @value, 'Grant status change', 0, 1, 1, 5, NULL);
+VALUES (@activityType, 'Grant Status Change', @value, 'grant_status_change', NULL, 0, 0, @value, 'Grant status change', 0, 1, 1, 5, NULL),
+       (@activityType, 'Grant Payment', @value + 1, 'grant_payment', NULL, 0, 0, @value + 1, 'Grant payment', 0, 1, 1, 5, NULL);
 
diff --git a/sql/grantprograms_uninstall.sql b/sql/grantprograms_uninstall.sql
index a26c5551016a1b20a8b1744711d10b44603684a6..b042c39baf9c8a6f68710bce19581754ec06199f 100755
--- a/sql/grantprograms_uninstall.sql
+++ b/sql/grantprograms_uninstall.sql
@@ -136,4 +136,4 @@ ALTER table civicrm_grant DROP column grant_incomplete_reason_id;
 DELETE FROM civicrm_extension WHERE full_name = 'biz.jmaconsulting.grantprograms';
 
 -- RG-212
-DELETE cov FROM civicrm_option_group cog INNER JOIN civicrm_option_value cov ON cov.option_group_id = cog.id WHERE  cog.name = 'activity_type' AND cov.name LIKE 'grant_status_change';
+DELETE cov FROM civicrm_option_group cog INNER JOIN civicrm_option_value cov ON cov.option_group_id = cog.id WHERE  cog.name = 'activity_type' AND cov.name IN ('grant_status_change', 'grant_payment');