summaryrefslogtreecommitdiff
path: root/db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb')
-rw-r--r--db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb b/db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb
deleted file mode 100644
index 2750468834f..00000000000
--- a/db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddPullMirrorBranchPrefixToProjects < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- # rubocop:disable Migration/AddColumnsToWideTables
- # rubocop:disable Migration/PreventStrings
- def change
- add_column :projects, :pull_mirror_branch_prefix, :string, limit: 50
- end
- # rubocop:enable Migration/PreventStrings
- # rubocop:enable Migration/AddColumnsToWideTables
-end