Skip to main content

Implementing has_and_belongs_to_many association in Rails3?

 Implementing has_and_belongs_to_many association in Rails3?

A has_and_belongs_to_many association directly creates a many-to-many connection between models. This blog will illustrate how to implement such relation in Rails3 using this example - if an application includes two models :-
1. Event
2. Organizer
Here each Event can have many Organizers and each Organizer can appear in many Events.

Following are the required steps for implementing such relation :-

1. Generate the models using the command
rails g model Organizer
rails g model Event

Note: you can add necessary attributes to the models.

2. Declare the models in this way

class Event < ActiveRecord::Base
  has_and_belongs_to_many :organizers #append this line to your model
end

class Organizer < ActiveRecord::Base
  has_and_belongs_to_many :events       #append this line to your model
end


3. On running rake db:migrate for these models, by default rails create a column id in its tables. So both Events and Organizers table will have an id column.

4. Generate a rails migration for creating the join table EventsOrganizers.
rails g migration CreateEventsOrganizers

Note: The join table name should have the name of the models in alphabetical order. Here Events come 1st and then Organizers


5. In the migration file created : "create_events_organizers.rb" , write the following code

class CreateEventsOrganizers < ActiveRecord::Migration
  def change
    create_table :events_organizers do |t|
      t.integer :event_id
      t.integer :organizer_id
    end
  end
end


Note: Remove the timestamps (created by default) attribute since it will throw an error on create/edit of the association from the UI.


6. Run rake db:migrate
This will create a table in your database: events_organizers
Fields will be : id, event_id, organizer_id


7. One has to give an option in the UI for adding multiple organizers to a particular event. So one can add the following code to create a multiple select drop-down for organizers in the view events/_form.html.erb file<%= f.label :organizers %>
<%= select_tag "organizing_team", options_from_collection_for_select(Organizer.all, 'id', 'name',@event.organizers.map{ |j| j.id }), :multiple => true %>

This code will display a drop-down with the names of already added organizers.


8. In the events_controller.rb file
append these lines to the create and update methods

def create
@event = Event.new(params[:event])
@organizers = Organizer.where(:id => params[:organizing_team])
@event.organizers << @organizers
#associate the selected organizers to the event and create records in the join table


def update
@event = Event.find(params[:id])
@organizers = Organizer.where(:id => params[:organizing_team])
@event.organizers.destroy_all   #disassociate the already added organizers
@event.organizers << @organizers
#associate the selected organizers to the event and create records in the join table

9. On creation/update of an event when multiple organizers are selected then the entries are added to the join table events_organizers

Comments

Popular posts from this blog

Create dynamic sitemap on ruby on rails

Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site. It’s basically a XML file describing all URLs in your page: The following example shows a Sitemap that contains just one URL and uses all optional tags. The optional tags are in italics. <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">    <url>       <loc>http://www.example.com/</loc>       <lastmod>2005-01-01</lastmod>       <changefreq>monthly</changefreq>     ...

Omniauth Linked in Ruby On Rails

def get_linkedin_user_data      omniauth = request.env["omniauth.auth"]      dat=omniauth.extra.raw_info      linked_app_key = "xxxxxxx"      linkedin_secret_key = "yyyyyyy"      client = LinkedIn::Client.new(linked_app_key,linkedin_secret_key)      client.authorize_from_access(omniauth['credentials']['token'],omniauth['credentials']['secret'])      connections=client.connections(:fields => ["id", "first-name", "last-name","picture-url"])      uid=omniauth['uid']      token=omniauth["credentials"]["token"]      secret=omniauth["credentials"]["secret"]   #linked user data     omniauth = request.env["omniauth.auth"]      data             = omniauth.info      user_name...

Error malloc(): memory corruption nginx with passenger?

Error malloc(): memory corruption nginx with passenger Passenger issue resolving steps :  sudo gem uninstall passenger(uninstall all passenger) sudo gem install passenger sudo passenger-install-nginx-module --auto --auto-download --prefix=/opt/nginx --extra-configure-flags=none Update nginx config file with new passenger version and restart the nginx