通过命令promt插入的数据不会保存在Postgresql数据库中

时间:2018-04-01 19:25:08

标签: ruby-on-rails

This is migration file

通过命令提示符插入的数据未保存在Postgresql数据库中 enter image description here 除名称字段外,所有其他字段都将更新 请点击上方查看图片

这是我的分类型号

class Category << ApplicationRecord
    attr_accessor :name
    has_many :posts
end

P.S。请让我知道问题的更正。我是第一次在这里发帖提问

1 个答案:

答案 0 :(得分:0)

这是因为您使用的名称attr_accessornamecategories

请从模型中删除attr_accossor

class Category << ApplicationRecord
    has_many :posts
end

请确保表name

中应包含categories