備忘録

覚えておきたい技術とかやりたいこととかやってることとか。

2016-10-01から1ヶ月間の記事一覧

Rails5でnested attribute使うときは気をつけろ

Rails5はモデルまわりの変更が多い気がする。やりたかったのは、以下のモデルで class Report < ApplicationRecord has_one :operator accepts_nested_attributes_for :operator, allow_destroy: true end class Operator < ApplicationRecord belongs_to :r…