My migration is as follows:
class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :email
      t.string :password
      t.string :name
      t.boolean :male
      t.boolean :admin
      t.timestamps
    end
  end
  def self.down
    drop_table :users
  end
end
When I go to script/console and type "User", Rails does not recognize the class.