Displaying 3 results from an estimated 3 matches for "srdjan".
Did you mean:
ardjan
2006 Jun 05
5
adding habtm through migrations
...my migration file:
create_table :categories do |t|
t.column :name, :string
# Other fields here
end
create_table :categories_products do |t|
t.column :category_id, :integer
t.column :product_id, :integer
#how do I set the primary key to be (category_id, product_id)
end
Cheers
Regards
srdjan
2008 Oct 06
4
what is Driver & what is Adapter ?
what is Driver & what is Adapter ?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
2013 Nov 10
3
accepts_nested_attributes_for how, example
I have following tables with following models:
users(id, role_id) *has_many :entries*
categories(id, category_name) *has_many :entries*
entries(id, category_id, user_id) *belongs_to :user, belongs_to
:category, has_one :storage*
storages(id, title, content, entry_id)* belongs_to :entry*, *has_one
:vote*
votes(id, count, storage_id) *belongs_to :storage*
Now,