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
56e1df53
Commit
56e1df53
authored
Jun 06, 2013
by
delba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use update_column
parent
c1d4f029
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
lib/paranoia.rb
+2
-9
No files found.
lib/paranoia.rb
View file @
56e1df53
...
...
@@ -21,24 +21,17 @@ module Paranoia
def
delete
return
if
new_record?
or
destroyed?
update_
attribute_or_
column
:deleted_at
,
Time
.
now
update_column
:deleted_at
,
Time
.
now
end
def
restore!
update_
attribute_or_
column
:deleted_at
,
nil
update_column
:deleted_at
,
nil
end
def
destroyed?
!
self
.
deleted_at
.
nil?
end
alias
:deleted?
:destroyed?
private
# Rails 3.1 adds update_column. Rails > 3.2.6 deprecates update_attribute, gone in Rails 4.
def
update_attribute_or_column
(
*
args
)
respond_to?
(
:update_column
)
?
update_column
(
*
args
)
:
update_attribute
(
*
args
)
end
end
class
ActiveRecord
::
Base
...
...
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