向表中添加多个列
要向表中添加多个列,请在使用 rails generate migration
命令时将 field:type
对与空格分开。
一般语法是:
rails generate migration NAME [field[:type][:index] field[:type][:index]] [options]
例如,以下内容将 name
,salary
和 email
字段添加到 users
表:
rails generate migration AddDetailsToUsers name:string salary:decimal email:string
这会生成以下迁移:
class AddDetailsToUsers < ActiveRecord::Migration[5.0]
def change
add_column :users, :name, :string
add_column :users, :salary, :decimal
add_column :users, :email, :string
end
end