summaryrefslogtreecommitdiffstats
path: root/db/migrate/20090704172355_create_groups_users.rb
blob: 9ce03b95ba8a1c819933a73a465fb45ab83882b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateGroupsUsers < ActiveRecord::Migration
  def self.up
    create_table :groups_users, :id => false do |t|
      t.column :group_id, :integer, :null => false
      t.column :user_id, :integer, :null => false
    end
    add_index :groups_users, [:group_id, :user_id], :unique => true, :name => :groups_users_ids
  end

  def self.down
    drop_table :groups_users
  end
end