blob: 94e5ee2d839fccf07bfe1a97a52fc43c5fb056a9 (
plain)
1
2
3
4
5
6
7
8
|
class CreateRolesManagedRoles < ActiveRecord::Migration
def change
create_table :roles_managed_roles, :id => false do |t|
t.integer :role_id, :null => false
t.integer :managed_role_id, :null => false
end
end
end
|