Sha256: c837874eafbfd5c39ae8328d9bfe1c8ec1a19e17d41229084af4489c11804ebc
Contents?: true
Size: 622 Bytes
Versions: 72
Compression:
Stored size: 622 Bytes
Contents
# This migration comes from push_type (originally 20150310123230) class CreatePushTypeTaxonomyHierarchies < ActiveRecord::Migration def change create_table :push_type_taxonomy_hierarchies, id: false do |t| t.uuid :ancestor_id, null: false t.uuid :descendant_id, null: false t.integer :generations, null: false end add_index :push_type_taxonomy_hierarchies, [:ancestor_id, :descendant_id, :generations], unique: true, name: "taxonomy_anc_desc_idx" add_index :push_type_taxonomy_hierarchies, [:descendant_id], name: "taxonomy_desc_idx" end end
Version data entries
72 entries across 72 versions & 4 rubygems