Sha256: 4c39f95a6db77fe088c2c5ad941ca26588b00e3f0758498a7e19c233de8960ff
Contents?: true
Size: 563 Bytes
Versions: 145
Compression:
Stored size: 563 Bytes
Contents
class CreateTargetRemoteExecutionProxies < ActiveRecord::Migration[4.2] def change create_table :target_remote_execution_proxies do |t| t.integer :remote_execution_proxy_id t.integer :target_id t.string :target_type, :limit => 255 t.timestamps end add_index :target_remote_execution_proxies, :remote_execution_proxy_id, :name => 'target_remote_execution_proxies_proxy_id' add_index :target_remote_execution_proxies, [:target_id, :target_type], :name => 'target_remote_execution_proxies_target_id_target_type' end end
Version data entries
145 entries across 145 versions & 1 rubygems