Sha256: acecd6d807834593acb31c9df00f5ec97a3c01baa96da305f0f5416231892392

Contents?: true

Size: 284 Bytes

Versions: 1

Compression:

Stored size: 284 Bytes

Contents

class CreateUsuarios < ActiveRecord::Migration
  def change
    create_table :usuarios do |t|
      t.string :username
      t.string :password_hash
      t.string :password_salt
      t.string :autenticavel_type
      t.integer :autenticavel_id

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
omniauth-sabia-1.0.1 db/migrate/20120606202227_create_usuarios.rb