Class: CreateJoinTableRolesGroups

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/migrations/20150221024728_create_join_table_roles_groups.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
# File 'lib/migrations/20150221024728_create_join_table_roles_groups.rb', line 2

def change
  create_table :groups_roles do |t|
    t.belongs_to :group
    t.belongs_to :role
  end
end