3

这是我的用户模型.rb

class User < ActiveRecord::Base
    attr_accessor :password
  attr_accessible :email, :name

  validates :name,:presence=>true,:length=>{:maximum=>15}
    validates :email,:presence=>true,:length=>{:maximum=>15}
end

我想添加一列新的密码。我使用了命令

rails g migration pass_mig password:string

然后

rake db:migrate

但在 db 模式中仍然

ActiveRecord::Schema.define(:version => 20130627073430) do

      create_table "users", :force => true do |t|
        t.string   "name"
        t.string   "email"
        t.datetime "created_at", :null => false
        t.datetime "updated_at", :null => false
      end
end

同样在 Rails 控制台中:密码不能添加到新的用户对象中,即新的数据库条目中。请建议。PS:我是 Rails 新手,所以这可能是一个愚蠢的问题。我正在使用 rails 版本:3.2.13 和 ruby​​ 版本:1.9.3

4

2 回答 2

6

好的,这是每个人都在谈论的关于 Rails 的“神奇”事情之一。当您进行迁移以向表中添加列时,有一个命名约定。尝试这个:

rails g migration add_password_to_users password:string

实际上几乎所有东西都有重要的命名约定。

于 2013-06-27T07:50:55.367 回答
0

您可以按以下方式添加独立迁移

rails generate migration AddPasswordToUsers password:string

如需更多独立迁移,您可以点击链接。 http://guides.rubyonrails.org/migrations.html#creating-a-standalone-migration

或者你可以做另一件事。第一次创建迁移

rails g migration AddColumnToUser

这将在 db/migrate 中创建一个迁移文件。您需要更改该文件内容。

class AddColumnToUser < ActiveRecord::Migration
  def change
    # all the codes being generated automatically. The following you need to write.
    add_column :users, :password, :string   # this means you are adding password having string type in users table.
  end
end

完成上述步骤之一后。做就是了rake db:migrate

于 2013-06-27T07:59:12.607 回答