ref: master
plugins/oauth_client/db/migrate/20141014162710_create_oauth_client_user_providers.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
class CreateOauthClientUserProviders < ActiveRecord::Migration def self.up create_table :oauth_client_plugin_user_providers do |t| t.references :user t.references :provider t.boolean :enabled t.timestamps end end def self.down drop_table :oauth_client_plugin_user_providers end end |