Sha256: 4f661c1db943ded8f15bd8166de1e74a00925a7022c01e336914e1cdbc090691
Contents?: true
Size: 268 Bytes
Versions: 15
Compression:
Stored size: 268 Bytes
Contents
class IsParanoidToPaperTrail < ActiveRecord::Migration def up [Account, Campaign, Contact, Lead, Opportunity, Task].each do |klass| klass.where('deleted_at IS NOT NULL').each do |object| object.destroy end end end def down end end
Version data entries
15 entries across 15 versions & 1 rubygems