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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /db/migrate/20201204111300_create_packages_debian_group_components.rb
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'db/migrate/20201204111300_create_packages_debian_group_components.rb')
-rw-r--r--db/migrate/20201204111300_create_packages_debian_group_components.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/db/migrate/20201204111300_create_packages_debian_group_components.rb b/db/migrate/20201204111300_create_packages_debian_group_components.rb
deleted file mode 100644
index c69f8d10c2b..00000000000
--- a/db/migrate/20201204111300_create_packages_debian_group_components.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# frozen_string_literal: true
-
-class CreatePackagesDebianGroupComponents < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- UNIQUE_NAME = 'uniq_pkgs_deb_grp_components_on_distribution_id_and_name'
-
- disable_ddl_transaction!
-
- def up
- unless table_exists?(:packages_debian_group_components)
- create_table :packages_debian_group_components do |t|
- t.timestamps_with_timezone
- t.references :distribution,
- foreign_key: { to_table: :packages_debian_group_distributions, on_delete: :cascade },
- null: false,
- index: false
- t.text :name, null: false
-
- t.index %w(distribution_id name),
- name: UNIQUE_NAME,
- unique: true,
- using: :btree
- end
- end
-
- add_text_limit :packages_debian_group_components, :name, 255
- end
-
- def down
- drop_table :packages_debian_group_components
- end
-end