SyntaxFix
Write A Post
Hire A Developer
Questions
To drop a particular database, you can do this on rails console:
$rails console Loading development environment 1.9.3 > ActiveRecord::Migration.drop_table(:<table_name>) 1.9.3 > exit
And then migrate DB again
$bundle exec rake db:migrate