Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paranoia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paranoia
Commits
e0e1d300
Commit
e0e1d300
authored
May 27, 2011
by
Aditya Sanghi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated readme
parent
7e9adb2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
+14
-1
README.md
+14
-1
No files found.
README.md
View file @
e0e1d300
...
...
@@ -40,7 +40,7 @@ Then run:
class Client < ActiveRecord::Base
acts_as_paranoid
...
end
...
...
@@ -60,6 +60,18 @@ If you want a method to be called on destroy, simply provide a _before\_destroy_
...
end
You can replace the older acts_as_paranoid methods as follows:
find_with_deleted(:all) => unscoped
find_with_deleted(:first) => unscoped.first
find_with_deleted(id) => unscoped.find(id)
find_with_deleted([id1,id2]) => unscoped.find([id1,id2])
find_only_deleted(:all) => unscoped.where("deleted_at is not null")
find_only_deleted(:first) => unscoped.where("deleted_at is not null").first
find_only_deleted(id) => unscoped.where("deleted_at is not null").find(id)
find_only_deleted([id1,id2]) => unscoped.where("deleted_at is not null").find([id1,id2])
## License
This gem is released under the MIT license.
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment