Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 280 Bytes

rb_rails_activerecord_relations_belongs_to.md

File metadata and controls

8 lines (7 loc) · 280 Bytes

Belongs_to bezeichnet eine 1:x Beziehung.

class Book < ApplicationRecord
   belongs_to :author
end

Rails 5: Die Beziehung, bzw der Foreign key ist ab Rails 5 standartmässig Not Null. Um diesen wieder nullable zu machen braucht man den Parameter optional:true