7 lines
160 B
Ruby
7 lines
160 B
Ruby
class AddDeletetedAtToOffers < ActiveRecord::Migration
|
|
def change
|
|
add_column :offers, :deleted_at, :datetime
|
|
add_index :offers, :deleted_at
|
|
end
|
|
end
|