comments
This commit is contained in:
parent
066c2bed42
commit
381c42724f
|
@ -25,6 +25,12 @@ module Trashable
|
||||||
end
|
end
|
||||||
|
|
||||||
def trash!
|
def trash!
|
||||||
|
# note, an argument could be made that the column should probably called trashed_at
|
||||||
|
# however, deleted_at is the terminology used in the UI
|
||||||
|
#
|
||||||
|
# we could hijack use a delete! and delete - redirecting the originals elsewhere, but that is
|
||||||
|
# confusing as well. So for now, we go with trash!
|
||||||
|
#
|
||||||
update_column(:deleted_at, DateTime.now)
|
update_column(:deleted_at, DateTime.now)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue