Sha256: 97618f807eb0d8674a0a93e65153fd43f1fd4fc01cca722b2c9622e6d17443a6

Contents?: true

Size: 401 Bytes

Versions: 1

Compression:

Stored size: 401 Bytes

Contents

class CreateAuthentications < ActiveRecord::Migration
  def change
    create_table :restpack_user_authentications do |t|
      t.string  :provider, :limit => 128, :null => false
      t.string  :uid, :limit => 1024, :null => false
      t.json    :omniauth, :null => false
      t.integer :application_id, :null => false
      t.integer :user_id, :null => false

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
restpack_user_service-0.0.5 db/migrate/20130807130950_create_authentications.rb