On Fri, Sep 21, 2012 at 9:07 PM, Fahim Patel <pafa...@gmail.com> wrote:

> No man ...
> i just use HABM in models and when i fire command in  console at that
> point   third table is created.
> And i do nothing manually..
>

Hi!

I don't use habtm so I'm not familiar with how it work in core.  But
reading from
http://guides.rubyonrails.org/association_basics.html#the-has_and_belongs_to_many-association

The simplest rule of thumb is that you should set up a has_many
:through relationship
if you need to work with the relationship model as an independent entity.
If you don’t need to do anything with the relationship model, it may be
simpler to set up a has_and_belongs_to_many relationship (though you’ll
need to remember to create the joining table in the database).

You should use has_many :through if you need validations, callbacks, or
extra attributes on the join model.
So I guess you need to create that table in the database manually.


>
>
> On Friday, September 21, 2012 3:51:41 PM UTC+5:30, Fahim Patel wrote:
>>
>> I have two models cow and milkman.
>> I am using has_and_belongs_to_many in both models .
>> By mistake i have deleted cows_milkmans table from database.
>>
>> When i use  this command i am getting error
>> a = Cow.last
>> a.milkmans  #  when i fire this command then i am getting error that
>> cows_milkmans table not exist
>>
>> As per my knowledge has_and_belongs_**to_many will create third table
>> automatically , no migration is needed.
>>
>> How can get that table ?
>>
>>  --
> 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/-/tPh97NyF83oJ.
>
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>



-- 
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to