Sha256: eb9d92abafd3a2d54cc854e550c030a2704dd0c54857eaf8ac31fab5ec4b4d46
Contents?: true
Size: 347 Bytes
Versions: 161
Compression:
Stored size: 347 Bytes
Contents
class CreateAgentMerges < ActiveRecord::Migration[4.2] def self.up create_table :agent_merges do |t| t.integer :agent_id, :agent_merge_list_id, null: false t.timestamps end add_index :agent_merges, :agent_id add_index :agent_merges, :agent_merge_list_id end def self.down drop_table :agent_merges end end
Version data entries
161 entries across 161 versions & 19 rubygems