Sha256: 388f608ff0dbafda41fbc5aff22b38d132145c011dd28f893b9fd472679e3cab
Contents?: true
Size: 697 Bytes
Versions: 18
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true class CreateG5AuthenticatableRoles < ActiveRecord::Migration<%= migration_version %> def change create_table(:g5_authenticatable_roles) do |t| t.string :name t.references :resource, :polymorphic => true t.timestamps end create_table(:g5_authenticatable_users_roles, :id => false) do |t| t.references :user t.references :role end add_index(:g5_authenticatable_roles, :name) add_index(:g5_authenticatable_roles, [ :name, :resource_type, :resource_id ], name: 'index_g5_authenticatable_roles_on_name_and_resource') add_index(:g5_authenticatable_users_roles, [ :user_id, :role_id ]) end end
Version data entries
18 entries across 18 versions & 1 rubygems