Sometimes you need to wipe your database and start over.
In your rails console, type the following and hit enter:
rake db:drop && db:create && db:migrate
These commands will delete your existing database, create a new one, and run your migrations all in one line. Pretty handy.