summaryrefslogtreecommitdiff
path: root/db/migrate/20160705054952_add_protected_branches_merge_access.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-07-02 13:14:24 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-07-02 13:14:24 +0000
commite07ebe66af957c46e7c69329b3ab561bb539351b (patch)
tree9a4d6d52f94b99aea154ad53000a39d172b18cdb /db/migrate/20160705054952_add_protected_branches_merge_access.rb
parent58786e2086b9d8db5784771f4dbfe8b5c107df18 (diff)
parent6aeb6996447ead0f6daf71faab85c99e11ab8ae8 (diff)
downloadgitlab-ce-e07ebe66af957c46e7c69329b3ab561bb539351b.tar.gz
Merge branch '59177-squash-old-migrations' into 'master'harish-and-cindy-ssl-check-rake-taskharish-and-cindy-ldap-sync-rake-tasks
Squash old migrations Closes #59177 See merge request gitlab-org/gitlab-ce!30226
Diffstat (limited to 'db/migrate/20160705054952_add_protected_branches_merge_access.rb')
-rw-r--r--db/migrate/20160705054952_add_protected_branches_merge_access.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20160705054952_add_protected_branches_merge_access.rb b/db/migrate/20160705054952_add_protected_branches_merge_access.rb
deleted file mode 100644
index 672e0e291db..00000000000
--- a/db/migrate/20160705054952_add_protected_branches_merge_access.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-# rubocop:disable Migration/Timestamps
-class AddProtectedBranchesMergeAccess < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :protected_branch_merge_access_levels do |t|
- t.references :protected_branch, index: { name: "index_protected_branch_merge_access" }, foreign_key: true, null: false
-
- # Gitlab::Access::MAINTAINER == 40
- t.integer :access_level, default: 40, null: false
-
- t.timestamps null: false
- end
- end
-end