Farmbot-Web-App/db/migrate/20180410180929_add_discarde...

8 lines
171 B
Ruby

class AddDiscardedAtToPoints < ActiveRecord::Migration[5.1]
def change
add_column :points, :discarded_at, :datetime
add_index :points, :discarded_at
end
end