timestamps gives a created_at field not created_on.

[#3093 state:committed]

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
This commit is contained in:
Emilio Tagua
2009-08-24 19:54:37 -03:00
committed by Jeremy Kemper
parent e93d0a50c0
commit 09fde6440a

View File

@@ -75,13 +75,13 @@ else
puts 'Inserting 10,000 users and exhibits...'
10_000.times do
user = User.create(
:created_on => today,
:created_at => today,
:name => Faker::Name.name,
:email => Faker::Internet.email
)
Exhibit.create(
:created_on => today,
:created_at => today,
:name => Faker::Company.name,
:user => user,
:notes => notes