]> git.openstreetmap.org Git - rails.git/commitdiff
Use a block to add the language record as rails seems to ignore any
authorTom Hughes <tom@compton.nu>
Sat, 23 May 2009 12:39:45 +0000 (12:39 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 23 May 2009 12:39:45 +0000 (12:39 +0000)
attempt to set the primary key in the argument list of the create method.

db/migrate/034_create_languages.rb

index ca9552d98298f6eafe559f6c581844a5985c5e37..daaf2199190d4c1669415bcf8633843cb5337956 100644 (file)
@@ -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]