docbrown/db/migrate/20211220170907_add_google_o_auth_fields.rb
2022-01-13 10:25:52 -06:00

6 lines
197 B
Ruby

class AddGoogleOAuthFields < ActiveRecord::Migration[6.1]
def change
add_column :users, :google_oauth2_username, :string
add_column :users, :google_oauth2_created_at, :datetime
end
end