summaryrefslogtreecommitdiff
path: root/db/migrate/20150415142013_add_deleted_at_to_jobs.rb
blob: 7a825a21212e99f0c371a00dc6ee335a3eb62156 (plain)
1
2
3
4
5
6
class AddDeletedAtToJobs < ActiveRecord::Migration
  def change
    add_column :jobs, :deleted_at, :datetime
    add_index :jobs, :deleted_at
  end
end