Displaying 1 result from an estimated 1 matches for "add_test_d".
Did you mean:
add_test
2006 Aug 01
10
Migration DB Question
Just going through ''agile web development with rails'' 2nd ed.
I accidentally created an empty migration source file with the wrong
name,
ruby script/generate migration add_test_date
and then straight after that created the one I wanted to use
ruby script/generate migration add_test_data
and populated the second one - when I ran
rake db:migrate
a few times it did not seem to update the table. I read something in the
book about creating empty migration files, but I thoug...