Originally created by @redrick on GitHub (Oct 16, 2017).
Crono generator leaves out migration version as it now appears in migrations from rails 5 and above...
before:
```ruby
class CreateCronoJobs < ActiveRecord::Migration
...omitted...
end
```
now (rails 5 and above):
```ruby
class CreateCronoJobs < ActiveRecord::Migration[5.1]
...omitted...
end
```
easy fix thou, will submit PR ASAP :)
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @redrick on GitHub (Oct 16, 2017).
Crono generator leaves out migration version as it now appears in migrations from rails 5 and above...
before:
now (rails 5 and above):
easy fix thou, will submit PR ASAP :)