Sha256: b06e3a41923b4b76d0b9af8a7dc07ff0209fdf497be160c77d62231187a4bda5
Contents?: true
Size: 838 Bytes
Versions: 26
Compression:
Stored size: 838 Bytes
Contents
class CreateMetasploitCredentialCores < ActiveRecord::Migration def change create_table :metasploit_credential_cores do |t| # # Foreign keys # t.references :origin, null: false, polymorphic: true t.references :private, null: true t.references :public, null: true t.references :realm, null: true t.references :workspace, null: false # # Timestamps # t.timestamps null: false end change_table :metasploit_credential_cores do |t| # # Foreign Key Indices # t.index [:origin_type, :origin_id] t.index :private_id t.index :public_id t.index :realm_id t.index :workspace_id end end end
Version data entries
26 entries across 26 versions & 1 rubygems