如何添加到设计模型?

时间:2014-10-12 06:38:32

标签: ruby-on-rails devise

我通过命令rails generate devise Users创建用户模型。

我希望我的Users模型保持不变,但我想添加更多列,但我不确定如何,此刻我仍然有点困惑。我是Ruby on Rails的新手。我不确定在做出这些更改后我应该运行什么命令。我认为更新数据库是rake db:migrate

我希望能够添加

name - string
address - string
username - string ..

根据文档中的这个例子,

class AddDetailsToProducts < ActiveRecord::Migration
  def change
    add_column :products, :part_number, :string    
    add_column :products, :price, :decimal
  end
end

change方法中,将part_number(字符串)和price(十进制)列添加到products

这会是

吗?

档案:20141011161019_devise_create_users.rb

class DeviseCreateUsers < ActiveRecord::Migration
  def change
    create_table(:users) do |t|
      ## Database authenticatable
      t.string :email,              null: false, default: ""
      t.string :encrypted_password, null: false, default: ""

      ## Recoverable
      t.string   :reset_password_token
      t.datetime :reset_password_sent_at

      ## Rememberable
      t.datetime :remember_created_at

      ## Trackable
      t.integer  :sign_in_count, default: 0, null: false
      t.datetime :current_sign_in_at
      t.datetime :last_sign_in_at
      t.inet     :current_sign_in_ip
      t.inet     :last_sign_in_ip

      ## Confirmable
      # t.string   :confirmation_token
      # t.datetime :confirmed_at
      # t.datetime :confirmation_sent_at
      # t.string   :unconfirmed_email # Only if using reconfirmable

      ## Lockable
      # t.integer  :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
      # t.string   :unlock_token # Only if unlock strategy is :email or :both
      # t.datetime :locked_at


      t.timestamps
    end

    add_index :users, :email,                unique: true
    add_index :users, :reset_password_token, unique: true
    # add_index :users, :confirmation_token,   unique: true
    # add_index :users, :unlock_token,         unique: true
  end
end

2 个答案:

答案 0 :(得分:2)

不要改变现有的迁移。您希望使用命令rails generate migration MigrationName创建新的迁移,然后按照Active Record Migrations Rails指南进行操作,该指南提供了有关如何添加数据库列的大量示例。

答案 1 :(得分:2)

首先,运行rake db:migrate。这将运行由数据库设计的迁移。

之后,只需在模型中添加更多字段,就像您从未安装设计一样。第一步是生成新的迁移。在命令行运行:

bin/rails generate migration AddNameAddressUsernameToUsers name:string address:string username:string

这将创建一个新的迁移文件。然后,您应该再次使用rake db:migrate在数据库上运行该迁移文件。之后,您应该可以在控制器和视图中引用这些新模型字段。

虽然您可以在一次迁移中完成所有操作,但通常最好将迁移保持在小而离散的状态。如果出现任何问题,这可以更轻松地解决问题。