Mercurial > hg > soundsoftware-site
view .svn/pristine/ce/ce65654e5d3100fb21c21908fc51e7ada1fc2c4a.svn-base @ 1580:fa3d9c22497c dockerise
More requires
author | Chris Cannam |
---|---|
date | Fri, 04 Aug 2017 18:01:54 +0100 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
class DeleteOrphanTimeEntriesCustomValues < ActiveRecord::Migration def up CustomValue.where("customized_type = ? AND NOT EXISTS (SELECT 1 FROM #{TimeEntry.table_name} t WHERE t.id = customized_id)", "TimeEntry").delete_all end def down # nop end end