aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240227085442_add_last_search_id_to_users.rb
blob: be58999f0266870775445f253fd8084d114bbb29 (plain)
1
2
3
4
5
class AddLastSearchIdToUsers < ActiveRecord::Migration[7.1]
  def change
    add_column :users, :last_search_id, :integer
  end
end