class CreateUsers < ActiveRecord::Migration def self.up create_table :users, :force => true do |t| t.string :login t.string :email t.string :crypted_password, :limit => 40 t.string :salt, :limit => 40 t.string :remember_token t.string :remember_token_expires_at t.timestamps end end def self.down drop_table :users end end