README.md in lol_dba-2.0.1 vs README.md in lol_dba-2.0.2

- old
+ new

@@ -1,8 +1,8 @@ #lol_dba [![travis](https://api.travis-ci.org/plentz/lol_dba.png?branch=master)](https://travis-ci.org/plentz/lol_dba) -lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts. Most of the code come from rails_indexes and migration_sql_generator. +lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts. Most of the initial code came from [rails_indexes](https://github.com/warpc/rails_indexes) and [migration_sql_generator](https://github.com/muness/migration_sql_generator). ### Quick example To use lol_dba in the easiest way possible you have to do two things: @@ -39,10 +39,10 @@ rake db:migrate_sql[pending] # only pending migrations rake db:migrate_sql[20120221205526] # generate sql only for migration 20120221205526 ### Compatibility -Compatible with Ruby 2.x and Rails 3.x, 4.x. +Compatible with Ruby 2.x and Rails 3.x, 4.x, 5.x. ### About primary_key >The primary key is always indexed. This is generally true for all storage engines that at all supports indices.