Sha256: 2c14e7174fdb8e10ff801fefcc870e97f225b714c11de29eb791417c4bd924fd
Contents?: true
Size: 745 Bytes
Versions: 195
Compression:
Stored size: 745 Bytes
Contents
class CreateContentViewPuppetEnvironments < ActiveRecord::Migration[4.2] def change create_table :katello_content_view_puppet_environments do |t| t.references :content_view_version t.references :environment t.string :name, :limit => 255 t.string :pulp_id, :null => false, :limit => 255 t.timestamps end add_index :katello_content_view_puppet_environments, [:content_view_version_id], :name => :index_cvpe_on_content_view_version_id add_index :katello_content_view_puppet_environments, [:environment_id], :name => :index_cvpe_on_environment_id add_index :katello_content_view_puppet_environments, [:pulp_id], :name => :index_cvpe_on_pulp_id end end
Version data entries
195 entries across 195 versions & 1 rubygems