[Rails] Integrating beast in existing rails app (database conflict).

2010-03-14 Thread rick_2047
Hi, I want to integrate the beast forums in an existing rails app, but there is a database conflict. I already have a post model for the blog and beast requires it. How do I eliminate the problem. Regards, Paresh -- You received this message because you are subscribed to the Google Groups Ruby

[Rails] Problem with params[]

2009-02-01 Thread rick_2047
Hi! I'm building a discussion forum in my rails app and there seems to be a problem in creating a new topic in the forum. I'm using three models for it forum, topic and post. The topic model has following fields: t.integer :forum_id t.integer :user_id t.string :name t.datetime

[Rails] join model misery

2008-09-26 Thread rick_2047
I have two models Event and Category in my rails app. I want a join model for many to many association so i used the script ./script/generate migration create_categories_events event_id:integer category_id:integer but the migration that is generated is empty. I am using rails 2.1.1. Can anyone