mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
15 lines
377 B
Ruby
15 lines
377 B
Ruby
class CreateOAuth2Providers < ActiveRecord::Migration
|
|
def change
|
|
create_table :o_auth2_providers do |t|
|
|
t.string :base_url
|
|
t.string :token_endpoint
|
|
t.string :authorization_endpoint
|
|
t.string :client_id
|
|
t.string :client_secret
|
|
t.belongs_to :auth_provider, index: true, foreign_key: true
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|