If you look in db/schema.rb you will see something like:
create_table \"users\", :force => true do |t|
What does the :force => true
:force => true
This simply drops the table before creation. Check the docs for more info here: ActiveRecord::ConnectionAdapters::SchemaStatements