socialforge/db/migrate/20151218022014_batch_delete...

10 lines
212 B
Ruby
Raw Normal View History

# encoding: utf-8
class BatchDeleteProjectJournalActivities < ActiveRecord::Migration
def up
ForgeActivity.where('forge_act_type = \'Journal\'').destroy_all #需要触发回调
end
def down
end
end