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
4c4519c7
Commit
4c4519c7
authored
Feb 23, 2017
by
John Hawthorn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UniquenessValidator on rails 5.1.0.beta1
parent
103c33b0
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 @
4c4519c7
...
@@ -284,8 +284,8 @@ require 'paranoia/rspec' if defined? RSpec
...
@@ -284,8 +284,8 @@ require 'paranoia/rspec' if defined? RSpec
module
ActiveRecord
module
ActiveRecord
module
Validations
module
Validations
module
UniquenessParanoiaValidator
module
UniquenessParanoiaValidator
def
build_relation
(
klass
,
table
,
attribute
,
value
)
def
build_relation
(
klass
,
*
args
)
relation
=
super
(
klass
,
table
,
attribute
,
value
)
relation
=
super
return
relation
unless
klass
.
respond_to?
(
:paranoia_column
)
return
relation
unless
klass
.
respond_to?
(
:paranoia_column
)
arel_paranoia_scope
=
klass
.
arel_table
[
klass
.
paranoia_column
].
eq
(
klass
.
paranoia_sentinel_value
)
arel_paranoia_scope
=
klass
.
arel_table
[
klass
.
paranoia_column
].
eq
(
klass
.
paranoia_sentinel_value
)
if
ActiveRecord
::
VERSION
::
STRING
>=
"5.0"
if
ActiveRecord
::
VERSION
::
STRING
>=
"5.0"
...
...
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