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

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

Lazy loading in rails – Rails Feature

 Lazy loading in rails – Rails Feature ? Lazy loading in rails is the amazing feature provided with rails. In console you might have tried to examine how lazy loading in rails actually works. In this tutorial, we will learn about this Rails - Lazy loading feature with examples. What exactly is Lazy Loading? As the name suggests the data is loaded in lazy manner (Really!) i.e. Your database is queried only when data from the database is required for some kind of manipulation in code. You will get more of this after you read how-to of lazy loading below. How lazy loading works: Whenever you try to get some data from database, For example, users is the database table that you have. And you are querying database to get users having age less than 20. Then, you will write code like, result = User.where("age < 20") when above statement is executed, your database is not queries yet(because the resultant data is not required yet). When you execute following code, records = resu...

Rails Migration Difference between Text and String

Rails Migration Difference between Text and String ? While working with Rails Migration Difference between Text and String is important to be known to every developer. Columns and their data types are finalized while deciding Table structure. This tutorial will help understand difference between String and Text column type and illustrate how to write Rails Migration implementing the same. You might want to read about database.yml files for specifying database configuration for Rails Application. 1. Concepts When String or Text data type is required?     Whenever you require your column to store information which is lengthy in size (Many characters), you need to consider String or Text data type for the column.     Both of them let you store Many(How Many - will see later) characters Difference between String and Text Considering MySQL database Feature     String     Text Length     1 to 255     ...