Sha256: f9753bf9b6b41010756507d0b113e01fa84dabb1b9e077a05b477b12f1d86830

Contents?: true

Size: 868 Bytes

Versions: 44

Compression:

Stored size: 868 Bytes

Contents

class AddOstreeBranches < ActiveRecord::Migration
  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

44 entries across 44 versions & 1 rubygems

Version Path
katello-3.5.2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.1.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.0.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.0.rc2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.5.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.5 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.4 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.0.2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.0.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.3.2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.0 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.0.rc2 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.4.0.rc1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.3.1.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.3.1 db/migrate/20150513034751_add_ostree_branches.rb
katello-3.3.0.1 db/migrate/20150513034751_add_ostree_branches.rb