rosa-build/db/migrate/20120206194328_remove_orpha...

9 lines
163 B
Ruby
Raw Normal View History

2012-02-06 19:47:39 +00:00
class RemoveOrphanPlatforms < ActiveRecord::Migration
def self.up
Platform.all.each {|x| x.destroy unless x.owner.present?}
end
def self.down
end
end