No commit activity in last 3 years
No release in over 3 years
This gem add deleted_at and last_view_at columns.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.9
~> 10.0
 Project Readme

Eagling

Installation

Add this line to your application's Gemfile:

gem 'eagling', :git => 'https://github.com/sajjadmurtaza49/eagling'

or

gem 'eagling'

And then execute:

$ bundle

Or install it yourself as:

    $ gem install eagling

Usage

  • Where you want extra attribues in you migration, just add
  • t.eagling(column_name1: :data_type, column_name2: :data_type ....)
  • For Example
t.eagling(last_view_at: :datetime)
t.eagling(last_view_at: :datetime, deleted_at: :datetime)