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

16 lines
371 B
Ruby
Raw Normal View History

# frozen_string_literal:true
class CreateOAuth2Mappings < ActiveRecord::Migration[4.2]
2016-03-23 18:39:41 +01:00
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