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
066ab790
Commit
066ab790
authored
Feb 13, 2015
by
Dmitry Babenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove table_name from where methods
parent
d10a7713
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/paranoia.rb
+2
-2
No files found.
lib/paranoia.rb
View file @
066ab790
...
...
@@ -29,7 +29,7 @@ module Paranoia
end
def
only_deleted
with_deleted
.
where
.
not
(
table_name
=>
{
paranoia_column
=>
paranoia_sentinel_value
}
)
with_deleted
.
where
.
not
(
paranoia_column
=>
paranoia_sentinel_value
)
end
alias
:deleted
:only_deleted
...
...
@@ -182,7 +182,7 @@ class ActiveRecord::Base
self
.
paranoia_column
=
(
options
[
:column
]
||
:deleted_at
).
to_s
self
.
paranoia_sentinel_value
=
options
.
fetch
(
:sentinel_value
)
{
Paranoia
.
default_sentinel_value
}
def
self
.
paranoia_scope
where
(
table_name
=>
{
paranoia_column
=>
paranoia_sentinel_value
}
)
where
(
paranoia_column
=>
paranoia_sentinel_value
)
end
default_scope
{
paranoia_scope
}
...
...
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