From: Tom Hughes Date: Sat, 23 May 2009 12:39:45 +0000 (+0000) Subject: Use a block to add the language record as rails seems to ignore any X-Git-Tag: live~7319^2~75 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/ded669bb4de31137c8956d8ba40a24a220864ea3 Use a block to add the language record as rails seems to ignore any attempt to set the primary key in the argument list of the create method. --- diff --git a/db/migrate/034_create_languages.rb b/db/migrate/034_create_languages.rb index ca9552d98..daaf21991 100644 --- a/db/migrate/034_create_languages.rb +++ b/db/migrate/034_create_languages.rb @@ -10,7 +10,11 @@ class CreateLanguages < ActiveRecord::Migration add_primary_key :languages, [:code] - Language.create(:code => 'en', :name => 'English', :translation_available => true) + Language.create do |l| + l.code = 'en' + l.name = 'English' + l.translation_available = true + end add_foreign_key :users, [:locale], :languages, [:code] add_foreign_key :diary_entries, [:language], :languages, [:code]