我使用终端“CreateUsers”
创建了简单的迁移类 class CreateUsers < ActiveRecord::Migration
def up
create_table :users do |t|
t.column "first_name", :string, :limit => 25
t.string "last_name", :limit => 25
t.string "email", :default => "" :null => false
t.string "password", :limit => 40
t.timestamps
end
end
def down
drop_table :users
end
end
我使用
保存并在终端上运行了它rake db:migrate
之后,我渴望进入mysql帐户。当我显示我的用户字段时,我只看到ID和时间戳字段!!
我想知道为什么我无法看到名字,姓氏,电子邮件和密码字段?
谢谢