Guys now i want to add just data in my users Table just for test with it
so I'm trying from use this code

users.create(:name => "admin",:user => "admin",:pass=> "123")

in the seed file then when it trying to run rake db:seed

it always gave me the error [undefined local variable or method 'users'
for main : object]

my table structure was
create_table :users do |t|
      t.string :name
      t.string :user
      t.string :pass
      t.timestamps

so i want to know what is the best way to add data to the DB
using the seed file

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/9d990ac9cb1fc814a856021ed64b166f%40ruby-forum.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to