Sha256: 11279e28091a027dfc9f5439f7a0bea00a8f546e4d7908176729899c3a649065
Contents?: true
Size: 415 Bytes
Versions: 7
Compression:
Stored size: 415 Bytes
Contents
class CreateAuthzRoleGrants < ActiveRecord::Migration[5.2] def change create_table :authz_role_grants do |t| t.references :authz_role, foreign_key: true, null: false, index: { name: 'authz_role_grants_role_index' } t.references :rolable, polymorphic: true, null: false, index: { name: 'authz_role_grants_rolable_index' } t.timestamps end end end
Version data entries
7 entries across 7 versions & 1 rubygems