Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Forked from zulhfreelancer/rails.md
Created October 19, 2020 10:28
Show Gist options
  • Save tomcbe/5b3247d93b41a6dfbd08597539d6d576 to your computer and use it in GitHub Desktop.
Save tomcbe/5b3247d93b41a6dfbd08597539d6d576 to your computer and use it in GitHub Desktop.
Delete all tables data and recreate tables in Rails

You can have finer control with:

rake db:drop:all

And then create the database without running the migrations:

rake db:create:all

Then run all your migrations:

rake db:migrate

If you have some seeds data, run:

rake db:seed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment