In your create_users
migration (APP_ROOT/db/migrate/..), add drop_table :users
right before create_table :users
and run rake db:migrate
. It will remove the users table before recreating it. You can remove that line of code after running this migration so it doesn’t give you errors later on. Just a small fix if you dont have UI access to a database (on heroku, for example).