Sha256: 3ab0fdb0d9cb297ddd31f705283ec92f85a2442f3c3e6ea713cd40e73ffb56a1

Contents?: true

Size: 681 Bytes

Versions: 110

Compression:

Stored size: 681 Bytes

Contents

class CreateKatelloSmartProxySyncHistory < ActiveRecord::Migration[6.0]
  def change
    create_table :katello_smart_proxy_sync_history do |t|
      t.references :smart_proxy, :null => false
      t.references :repository, :null => false
      t.datetime :started_at
      t.datetime :finished_at
    end
    add_index "katello_smart_proxy_sync_history", ["smart_proxy_id"], :name => "index_spsh_smart_proxy_id"
    add_index "katello_smart_proxy_sync_history", ["repository_id"], :name => "index_spsh_repository_id"
    add_index "katello_smart_proxy_sync_history", [:smart_proxy_id, :repository_id], :unique => true, :name => 'index_spsh_smart_proxy_repository_unique'
  end
end

Version data entries

110 entries across 110 versions & 1 rubygems

Version Path
katello-4.10.0 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.9.2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.10.0.rc2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.10.0.rc1 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.4 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.9.1 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.3 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.9.0 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.7.6 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.9.0.rc2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.9.0.rc1 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.1 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.7.5 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.0 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.0.rc2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.7.4 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.8.0.rc1 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.7.3 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb
katello-4.7.2 db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb