Trying to follow this Help ( How (and whether) to populate rails application with initial data ) with Rake Boostrap Tasks, i got this Error:

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$ rake db:drop

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$ rake db:migrate
# [...]
==  CreateFieldattributes: migrating ==========================================
-- create_table(:fieldattributes)
   -> 0.0030s
==  CreateFieldattributes: migrated (0.0040s) =================================
#[...]
name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$ rake bootstrap:all
rake aborted!
uninitialized constant Fieldattributes

Tasks: TOP => bootstrap:all => bootstrap:default_fieldattributes
(See full trace by running task with --trace)

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$

This is my [RAILS_ROOT]/lib/tasks/bootstrap.rake:

namespace :bootstrap do
  desc "some blabla"
  task :default_fieldattributes => :environment do
    Fieldattributes.new(:attributename => 'text_field')
    Fieldattributes.new(:attributename => 'check_box')
    # [...]
    Fieldattributes.new(:attributename => 'text_area')
    Fieldattributes.new(:attributename => 'url_field')
  end

  desc "also blabla"
  task :all => [:default_fieldattributes]
end

As you can see, my database is created (migrated) correctly.

Also changing the new "change"-Migration way to "up" and "down", as written in "http://api.rubyonrails.org/classes/ActiveRecord/Migration.html":

class CreateFieldattributes < ActiveRecord::Migration
  def up
    create_table :fieldattributes do |t|
      t.string :attributename
      t.timestamps
    end
    Fieldattributes.create(:attributename => "Test")
  end

  def down
    drop_table :fieldattributes
  end
end

doesnt work:

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$ rake db:migrate
==  CreateFieldattributes: migrating ==========================================
-- create_table(:fieldattributes)
   -> 0.0010s
rake aborted!
An error has occurred, this and all later migrations canceled:

uninitialized constant CreateFieldattributes::Fieldattributes

Tasks: TOP => db:migrate
(See full trace by running task with --trace)

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)
$ rails -v
Rails 3.1.3 (Windows!)

name@CURIUM ~/Documents/developing/rubyonrails/checklist (master)

Could anyone help me with this? Thanks in advanced!

link|improve this question
Hi, migrations tend to cause problems when adding initial data. Migrations are best left to the job they’re designed for: creating the structure of your database. Creating seed data in them can also lead to your seed data being scattered across several migration files. The approach that worked for me was to use seeds.rb .Have a look at this railscasts here railscasts.com/episodes/179-seed-data as this was the approach that worked for me in rails 3.1.x. – Hishalv Dec 10 '11 at 16:48
Thanks Hishalv! Found the Problem. I mixed Singular & Plural up :-(. It should be "Fieldattribute.create", not "Fieldattribute*S*.create". Sorry. It work, of course, in Bootstrap, in the Migrations and in Seed Data. I will place it in seeds.rb after your advice :-). – Jens Schmidt Dec 10 '11 at 22:12
feedback

closed as too localized by mu is too short, Bill the Lizard Dec 11 '11 at 4:37

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.