«has-and-belongs-to-many» 태그된 질문


11
Factory Girl에서 has_and_belongs_to_many 연결을 만드는 방법
다음을 감안할 때 class User < ActiveRecord::Base has_and_belongs_to_many :companies end class Company < ActiveRecord::Base has_and_belongs_to_many :users end 양방향 연관을 포함하여 기업과 사용자를위한 공장을 어떻게 정의합니까? 여기 내 시도 Factory.define :company do |f| f.users{ |users| [users.association :company]} end Factory.define :user do |f| f.companies{ |companies| [companies.association :user]} end 이제 나는 시도 Factory …

4
Rails has_and_belongs_to_many 마이그레이션
두 가지 모델이 restaurant있고 userhas_and_belongs_to_many 관계를 수행하고 싶습니다. 이미 모델 파일로 이동하여 has_and_belongs_to_many :restaurants및has_and_belongs_to_many :users 이 시점에서 Rails 3과 같은 작업을 할 수 있어야한다고 가정합니다. rails generate migration .... 그러나 내가 시도한 모든 것이 실패한 것 같습니다. 저는 이것이 정말 간단한 일이라고 확신합니다. 저는 rails를 처음 접하기 때문에 여전히 배우고 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.