git://github.com/vincentopensourcetaiwan/vocabulary.git
This is my source codes.

I got two models, Book and Word. 

class Book < ActiveRecord::Base 
  has_and_belongs_to_many :words 
end 

class Word < ActiveRecord::Base 
   has_and_belongs_to_many :books 
end

I got a Join Tables for has_and_belongs_to_many Associations 

class CreateBooksWords < ActiveRecord::Migration 
  def self.up 
    create_table :books_words, :id => false do |t| 
      t.integer :book_id 
      t.integer :word_id 

      t.timestamps 
    end 
  end 

  def self.down 
    drop_table :books_words 
  end 
end

Now I want to create a form, and user can insert words into a book. 
How do I do that?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/mYn1cy23iXMJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to