Add a reference column migration in Rails 4

前端 未结 7 1851
时光取名叫无心
时光取名叫无心 2020-11-28 00:07

A user has many uploads. I want to add a column to the uploads table that references the user. What should the migration look like?

Here i

7条回答
  •  野性不改
    2020-11-28 00:48

    Another syntax of doing the same thing is:

    rails g migration AddUserToUpload user:belongs_to
    

提交回复
热议问题