aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240301154452_add_shared_to_searches.rb
blob: 4950c2361116609da6160e96ddb33bb78faf9df8 (plain)
1
2
3
4
5
class AddSharedToSearches < ActiveRecord::Migration[7.1]
  def change
    add_column :searches, :shared, :boolean, default: false
  end
end