Skip to content
Extraits de code Groupes Projets
20150613202109_create_o_auth_applications.rb 318 octets
Newer Older
class CreateOAuthApplications < ActiveRecord::Migration
    create_table :o_auth_applications do |t|
      t.belongs_to :user, index: true
      t.string :client_id
      t.string :client_secret

      t.timestamps null: false
    end
  end

  def self.down
    drop_table :o_auth_applications
  end