Sha256: 125a053992c264e8756c3b68cd770602738a151cd20856b82e8b20fc0282aedb

Contents?: true

Size: 429 Bytes

Versions: 7

Compression:

Stored size: 429 Bytes

Contents

class CreateAuthzRoleHasBusinessProcesses < ActiveRecord::Migration[5.2]
  def change
    create_table :authz_role_has_business_processes do |t|
      t.references :authz_business_process, foreign_key: true,
                   index: { name: 'authz_rhbp_business_process_index' }
      t.references :authz_role, foreign_key: true,
                   index: { name: 'authz_rhbp_role_index' }

      t.timestamps
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
authz-0.0.2 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1.alpha5 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1.alpha4 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1.alpha3 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1.alpha2 db/migrate/20181129220317_create_authz_role_has_business_processes.rb
authz-0.0.1.alpha db/migrate/20181129220317_create_authz_role_has_business_processes.rb