我在控制台上运行了以下命令
rails g migration payslips first_name:string last_name:string
class Payslips < ActiveRecord::Migration def change end end
我找不到原因.控制台生成命令有问题吗?
解决方法
功能是否正确,如果要创建模型,则需要运行:
rails g model payslips first_name:string last_name:string
然后你得到:
class CreatePayslips < ActiveRecord::Migration def change create_table :payslips do |t| t.string :first_name t.string :last_name t.timestamps end end end