dawarich/db/migrate/20251028130433_add_omniauth_to_users.rb

6 lines
158 B
Ruby

class AddOmniauthToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :provider, :string
add_column :users, :uid, :string
end
end