Sha256: 0f09684365f3098d8974cfdfdbea67bec583bf3912bedf89b34d45ffe75e614b

Contents?: true

Size: 873 Bytes

Versions: 195

Compression:

Stored size: 873 Bytes

Contents

class AddOstreeBranches < ActiveRecord::Migration[4.2]
  def up
    create_table :katello_ostree_branches do |t|
      t.string :name, :null => false, :limit => 255
      t.references :repository, :null => false
      t.timestamps
    end

    add_index :katello_ostree_branches, [:repository_id],
              :name => :index_branches_on_repository

    add_foreign_key :katello_ostree_branches,
                    :katello_repositories,
                    :column => "repository_id",
                    :name => "katello_ostree_branches_repository_id_fk"

    add_index :katello_ostree_branches, [:repository_id, :name],
              :name => :katello_ostree_branches_repo_branch, :unique => true
  end

  def down
    remove_foreign_key :katello_ostree_branches, :name => "katello_ostree_branches_repository_id_fk"
    drop_table :katello_ostree_branches
  end
end

Version data entries

195 entries across 195 versions & 1 rubygems

Version Path
katello-4.14.2 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.15.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.15.0.rc2 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.15.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.0.rc3 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.0.rc2 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.0.rc1.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.14.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.13.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.13.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.12.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.13.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.12.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.12.0.rc3 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.12.0.rc2 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.12.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.11.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-4.11.0 db/migrate/20150513034751_add_ostree_branches.rb