Sha256: d42c6d7b52a895133d00de3424f983bf97414a9fd9a1d4db012b64eb01c25cb7
Contents?: true
Size: 599 Bytes
Versions: 17
Compression:
Stored size: 599 Bytes
Contents
class ClearanceCreateUsers < ActiveRecord::Migration def self.up create_table(:users) do |t| t.string :email t.string :encrypted_password, :limit => 128 t.string :salt, :limit => 128 t.string :confirmation_token, :limit => 128 t.string :remember_token, :limit => 128 t.boolean :email_confirmed, :default => false, :null => false t.timestamps end add_index :users, [:id, :confirmation_token] add_index :users, :email add_index :users, :remember_token end def self.down drop_table :users end end
Version data entries
17 entries across 13 versions & 5 rubygems