Sha256: 96190702b2e813003ab62395e7c5269336fc59f692082116262fe5494d2e385c
Contents?: true
Size: 418 Bytes
Versions: 53
Compression:
Stored size: 418 Bytes
Contents
class AddHostProxyInvocations < ActiveRecord::Migration[6.0] def change # rubocop:disable Rails/CreateTableWithTimestamps create_table :host_proxy_invocations do |t| t.references :host, :null => false t.references :smart_proxy, :null => false end # rubocop:enable Rails/CreateTableWithTimestamps add_index :host_proxy_invocations, [:host_id, :smart_proxy_id], unique: true end end
Version data entries
53 entries across 53 versions & 1 rubygems