Sha256: 2ca9ea0a16f5f862fd6f3157e1c13cab6b090a385048e80888b5b4ec8ff04950

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

class CreateDockerTables < ActiveRecord::Migration
  def up
    create_table :katello_docker_images do |t|
      t.string :image_id
      t.integer :size
      t.string :uuid
      t.timestamps
    end
    create_table :katello_docker_tags do |t|
      t.string :name
      t.integer :docker_image_id
      t.integer :repository_id
      t.timestamps
    end
    add_index :katello_docker_images, :uuid, :unique => true
    add_foreign_key :katello_docker_tags, :katello_docker_images, :column => "docker_image_id"
    add_foreign_key :katello_docker_tags, :katello_repositories, :column => "repository_id"

    add_index :katello_docker_tags, [:docker_image_id, :repository_id, :name],
              :name => :docker_tag_docker_image_repo_name, :unique => true

    add_foreign_key :katello_repository_docker_images, :katello_docker_images,
                    :column => :docker_image_id
  end

  def down
    remove_foreign_key :katello_repository_docker_images, :name => "katello_repository_docker_images_docker_image_id_fk"
    remove_foreign_key :katello_docker_tags, :name => "katello_docker_tags_docker_image_id_fk"
    remove_foreign_key :katello_docker_tags, :name => "katello_docker_tags_repository_id_fk"
    drop_table :katello_docker_images
    drop_table :katello_docker_tags
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
katello-2.4.5 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.4 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.3 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.2 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.1 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.0 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.0.rc3 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.0.rc2 db/migrate/20141210173220_create_docker_tables.rb
katello-2.4.0.rc1 db/migrate/20141210173220_create_docker_tables.rb
katello-2.2.2 db/migrate/20141210173220_create_docker_tables.rb