has-and-belongs-to-many पर टैग किए गए जवाब

6
Has_and_belongs_to_many के लिए रेल तालिका में शामिल हों
रिश्ते के script/generate migrationलिए जॉइन टेबल बनाने के लिए मैं कैसे करूँ has_and_belongs_to_many? आवेदन रेल 2.3.2 पर चलता है, लेकिन मेरे पास भी 3.0.3 स्थापित है।

11
फैक्ट्री गर्ल में 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| …

4
रेलों के पास_और_बेलॉग_टो_मनी माइग्रेशन है
मेरे दो मॉडल हैं restaurantऔर userमैं एक has_and_belongs_to_many संबंध करना चाहता हूं। मैं पहले से ही मॉडल फ़ाइलों में चले गए और जोड़ लिया है has_and_belongs_to_many :restaurantsऔरhas_and_belongs_to_many :users मुझे लगता है कि इस बिंदु पर मुझे कुछ ऐसा करने में सक्षम होना चाहिए जैसे रेल 3: rails generate migration .... …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.