構思是用戶創建條目,並且文本不屬於一個用戶,而是屬於多個條目。當用戶創建第一個條目時,將創建一個文本,但不完全屬於該用戶。想想每個人寫10行的10個人,10行的文本。我如何編寫遷移?謝謝。如何在Rails中爲用戶,文本,條目表建模
Sketch--
User
has many entries
(has many texts, entries through texts?)
Text
has many entries
Entry
belongs to text
belongs to user
# updated...
User
has_many :entries
has_many :texts, :through => :entries
Text
has_many :entries
has_many :users, :through => :entries
Entry
belongs_to :user
belongs_to :text
謝謝你,我做了這些改變 – tidelake