Repository: fineract Updated Branches: refs/heads/develop 3e1705a47 -> 6e95f88d7
family members migration fix Project: http://git-wip-us.apache.org/repos/asf/fineract/repo Commit: http://git-wip-us.apache.org/repos/asf/fineract/commit/6ed74713 Tree: http://git-wip-us.apache.org/repos/asf/fineract/tree/6ed74713 Diff: http://git-wip-us.apache.org/repos/asf/fineract/diff/6ed74713 Branch: refs/heads/develop Commit: 6ed747130a9e74bad46663ba710719b6eb649d87 Parents: 455ef98 Author: nikpawar89 <[email protected]> Authored: Thu Aug 3 14:07:59 2017 +0530 Committer: nikpawar89 <[email protected]> Committed: Thu Aug 3 14:07:59 2017 +0530 ---------------------------------------------------------------------- .../sql/migrations/core_db/V328__family_members_sql_support.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/fineract/blob/6ed74713/fineract-provider/src/main/resources/sql/migrations/core_db/V328__family_members_sql_support.sql ---------------------------------------------------------------------- diff --git a/fineract-provider/src/main/resources/sql/migrations/core_db/V328__family_members_sql_support.sql b/fineract-provider/src/main/resources/sql/migrations/core_db/V328__family_members_sql_support.sql index e6e1101..458a100 100644 --- a/fineract-provider/src/main/resources/sql/migrations/core_db/V328__family_members_sql_support.sql +++ b/fineract-provider/src/main/resources/sql/migrations/core_db/V328__family_members_sql_support.sql @@ -44,7 +44,7 @@ CREATE TABLE `m_family_members` ( CONSTRAINT `FK_m_family_members_marital_status_m_code_value` FOREIGN KEY (`marital_status_cv_id`) REFERENCES `m_code_value` (`id`), CONSTRAINT `FK_m_family_members_profession_m_code_value` FOREIGN KEY (`profession_cv_id`) REFERENCES `m_code_value` (`id`), CONSTRAINT `FK_m_family_members_relationship_m_code_value` FOREIGN KEY (`relationship_cv_id`) REFERENCES `m_code_value` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; -- permissions
