Sha256: 692a9cac6246d1185307b80571711a554427215c40c5254b6849729c079a39d9
Contents?: true
Size: 481 Bytes
Versions: 4
Compression:
Stored size: 481 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.timestamps end add_index :users, :email add_index :users, :remember_token end def self.down drop_table :users end end
Version data entries
4 entries across 2 versions & 1 rubygems