Re: [Rails] how to generate third table in test database

2012-09-12 Thread Colin Law
On 12 September 2012 09:53, Colin Law wrote: > On 12 September 2012 08:57, Fahim Patel wrote: >> hi all, >> >> has_and_belongs_to_many :cows >> has_and_belongs_to_many :milkmans >> >> i am using has_and_belongs_to_many in my app.I know this will create third >> table internally cows_milkman

Re: [Rails] how to generate third table in test database

2012-09-12 Thread Colin Law
On 12 September 2012 08:57, Fahim Patel wrote: > hi all, > > has_and_belongs_to_many :cows > has_and_belongs_to_many :milkmans > > i am using has_and_belongs_to_many in my app.I know this will create third > table internally cows_milkmans in mysql database. > > when i migrate develpoment dat

[Rails] how to generate third table in test database

2012-09-12 Thread Fahim Patel
hi all, has_and_belongs_to_many :cows has_and_belongs_to_many :milkmans i am using has_and_belongs_to_many in my app.I know this will create third table internally cows_milkmans in mysql database. when i migrate develpoment database i have table cows_milkmans. Good no Problem till now.