summaryrefslogtreecommitdiffstats
path: root/db/migrate/20211213122100_remove_identity_url_from_users.rb
blob: 5279dafadda9454c90e69d9c649a1bef13ce92b2 (plain)
1
2
3
4
5
class RemoveIdentityUrlFromUsers < ActiveRecord::Migration[6.1]
  def change
    remove_column :users, :identity_url, :string
  end
end