Squasher
Squasher compresses old migrations in a Rails application. If you work on a big project with lots of migrations, every rake db:migrate might take a few seconds, or creating of a new database might take a few minutes. That's because Rails loads all those migration files. Squasher removes all the migrations and creates a single migration with the final database state of the specified date (the new migration will look like a schema).
Installation
You don't have to add it into your Gemfile. Just a standalone installation:
$ gem install squasher
@note if you use Rbenv don't forget to run rbenv rehash.
If you want to share it with your rails/sinatra/etc app add the below:
# Yep, the missing group in most Gemfiles where all utilities should be!
group :tools do
gem 'squasher', '>= 0.3.0'
gem 'capistrano'
gem 'rubocop'
end
Don't forget to run bundle.
To integrate squasher with your app even more do the below:
$ bundle binstub squasher
$ # and you have a runner inside the `bin` folder
$ bin/squasher
Usage
@note stop all preloading systems if there are present (spring, zeus, etc)
Suppose your application was created a few years ago. %app_root%/db/migrate folder looks like this:
2009...._first_migration.rb
2009...._another_migration.rb
# and a lot of other files
2011...._adding_model_foo.rb
# few years later
2013...._removing_model_foo.rb
# and so on
Storing these atomic changes over time is painful and useless. It's time to archive all this stuff. Once you install the gem you can run the squasher command.
$ squasher 2014 #compress all migrations which were created prior to the year 2014
You can tell squasher a more detailed date, for example:
$ squasher 2013/12 #prior to December 2013
$ squasher 2013/12/19 #prior to 19 December 2013
Options
Run squasher -h or just squasher to see how you can use squasher:
- in sql schema rails app
- in rails 5+ app
- inside an engine
- in "dry" mode
- in "reuse" mode
Requirements
It works and was tested on Ruby 2.0+ and Rails 3.1+. It also requires a valid development configuration in config/database.yml.
If an old migration inserted data (created ActiveRecord model records) you will lose this code in the squashed migration, BUT squasher will ask you to leave a tmp database which will have all data that was inserted while migrating. Using this database you could add that data as another migration, or into config/seed.rb (the expected place for this stuff).
(Changelog)[CHANGELOG.md]
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request