Skip to content

Commit

Permalink
Fix organisation currency seed value
Browse files Browse the repository at this point in the history
The currency codes are all capitals, this incorrect seed value tripped
me up, so let's fix it.
  • Loading branch information
mec committed Jan 4, 2024
1 parent f385b94 commit b6ef8fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/seeds/organisations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
beis_organisation_reference: organisation["short_name"],
organisation_type: organisation["type"],
language_code: "en",
default_currency: "gbp",
default_currency: "GBP",
role: organisation["role"]
}
Organisation.find_or_create_by(iati_reference: organisation["reference"]).update!(organisation_params)
Expand Down

0 comments on commit b6ef8fe

Please sign in to comment.