lawrencechanyewlong/wherewolfpro

View on GitHub
db/migrate/20160311000246_create_authorizations.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateAuthorizations < ActiveRecord::Migration
  def change
    create_table :authorizations do |t|
      t.string :provider
      t.string :uid
      t.integer :user_id

      t.timestamps null: false
    end
  end
end