Sha256: eed7be01b1d735f8650507d3c7518c06565d0d6b3c1451245401e1b5f92d00ad
Contents?: true
Size: 736 Bytes
Versions: 7
Compression:
Stored size: 736 Bytes
Contents
# This migration comes from maestrano_connector_rails_engine (originally 20151122163449) class CreateIdMaps < ActiveRecord::Migration def change create_table :id_maps do |t| t.string :connec_id t.string :connec_entity t.string :external_id t.string :external_entity t.integer :organization_id t.datetime :last_push_to_connec t.datetime :last_push_to_external t.timestamps null: false end add_index :id_maps, [:connec_id, :connec_entity, :organization_id], name: 'idmap_connec_index' add_index :id_maps, [:external_id, :external_entity, :organization_id], name: 'idmap_external_index' add_index :id_maps, :organization_id, name: 'idmap_organization_index' end end
Version data entries
7 entries across 7 versions & 1 rubygems