Forked from TimFletcher/20120625030355_add_deleted_at_to_user.rb
Last active
September 16, 2015 05:00
-
-
Save ridget/627d24be04a043589bfe to your computer and use it in GitHub Desktop.
Trashable 'concern' for Rails models
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# db/migrate/20120625030355_add_deleted_at_to_user.rb | |
class AddDeletedAtToUser < ActiveRecord::Migration | |
def change | |
add_column :users, :deleted_at, :datetime | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/application.rb | |
module YourApp | |
class Application < Rails::Application | |
config.autoload_paths += %W( | |
#{config.root}/lib | |
#{config.root}/app/controllers/concerns | |
#{config.root}/app/models/concerns | |
) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/models/concerns/trashable.rb | |
module Trashable | |
extend ActiveSupport::Concern | |
module ClassMethods | |
def trashed | |
self.where.not(deleted_at: nil) | |
end | |
end | |
def trash | |
run_callbacks :destroy do | |
# Check if this is the timestamp you want to use | |
update_column :deleted_at, Time.zone.now | |
end | |
end | |
def recover | |
update_column :deleted_at, nil | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/models/user.rb | |
class User < ActiveRecord::Base | |
include Trashable | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment