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

9 lines
163 B
Ruby

class RemoveOrphanPlatforms < ActiveRecord::Migration
def self.up
Platform.all.each {|x| x.destroy unless x.owner.present?}
end
def self.down
end
end