Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20201204111000_create_packages_debian_project_architectures.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f684a413873e376e9b170dc95460414fd51d3d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

class CreatePackagesDebianProjectArchitectures < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  INDEX_NAME = 'idx_pkgs_deb_proj_architectures_on_distribution_id'
  UNIQUE_NAME = 'uniq_pkgs_deb_proj_architectures_on_distribution_id_and_name'

  disable_ddl_transaction!

  def up
    with_lock_retries do
      unless table_exists?(:packages_debian_project_architectures)
        create_table :packages_debian_project_architectures do |t|
          t.timestamps_with_timezone
          t.references :distribution,
            foreign_key: { to_table: :packages_debian_project_distributions, on_delete: :cascade },
            null: false,
            index: { name: INDEX_NAME }
          t.text :name, null: false

          t.index %w(distribution_id name),
            name: UNIQUE_NAME,
            unique: true,
            using: :btree
        end
      end
    end

    add_text_limit :packages_debian_project_architectures, :name, 255
  end

  def down
    drop_table :packages_debian_project_architectures
  end
end