class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.column :email, :string t.column :first_name, :string t.column :last_name, :string t.column :homepage, :string t.column :encrypted_password, :string t.column :salt, :string end end def self.down drop_table :users end end