使用 Space 进行 rails g 迁移的语法

Syntax for rails g migration with Space

你好。

我正在尝试向我的架构中的 order_items table 添加一个名为 product_size 的列。

我是否通过以下方式执行此操作:

$ rails g migration add_product_size_to_order_items

$ rails g migration add_product_size_to_OrderItem

否则?

谢谢!

你应该使用

rails g migration add_product_size_to_order_items

然后添加这一行 product_size:data_type

示例:

rails g migration add_product_size_to_order_items product_size:decimal