I have the following seeds.rb file:
initial_users = User.create(
[
{
:first_name => "Joe",
:last_name => "Smith",
:address1 => "123 Anywhere St.",
:city => "San Francisco",
:state => "CA",
:zip => "12345",
:phone => "123-456-1234",
:password => "password"
},
{
:first_name => "Jane",
:last_name => "Doe",
:address1 => "123 Main St.",
:city => "Los Angeles",
:state => "CA",
:zip => "12345",
:phone => "123-345-4567",
:password => "password"
}
])
But when I run rake db:seed, the rows don't show up in the database even though there isn't any error being reported? I even tried specifying RAILS_ENV=development but it still doesn't show up. What am I doing wrong?