aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240314211609_drop_location_column.rb
blob: 1afa57f24e77281abc5491691b2dfc66c0aef83f (plain)
1
2
3
4
5
class DropLocationColumn < ActiveRecord::Migration[7.1]
  def change
    remove_column :things, :location
  end
end