1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20150915152943_create_o_auth2_mappings.rb

16 lines
371 B
Ruby

# frozen_string_literal:true
class CreateOAuth2Mappings < ActiveRecord::Migration[4.2]
def change
create_table :o_auth2_mappings do |t|
t.belongs_to :o_auth2_provider, index: true, foreign_key: true
t.string :resource_url
t.string :local_field
t.string :api_field
t.string :data_type
t.timestamps null: false
end
end
end