Remove all white spaces

This commit is contained in:
taitus
2017-09-06 14:12:32 +02:00
parent 25560a27fc
commit 9b6b57a24c
13 changed files with 24 additions and 25 deletions

View File

@@ -5,14 +5,14 @@ namespace :communities do
Proposal.all.each do |proposal|
if proposal.community.blank?
community = Community.create
community = Community.create
proposal.update(community_id: community.id)
end
end
Budget::Investment.all.each do |investment|
if investment.community.blank?
community = Community.create
community = Community.create
investment.update(community_id: community.id)
end
end