summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171106154015_remove_issues_branch_name.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20171106154015_remove_issues_branch_name.rb')
-rw-r--r--db/post_migrate/20171106154015_remove_issues_branch_name.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/post_migrate/20171106154015_remove_issues_branch_name.rb b/db/post_migrate/20171106154015_remove_issues_branch_name.rb
deleted file mode 100644
index 4e71aa2f163..00000000000
--- a/db/post_migrate/20171106154015_remove_issues_branch_name.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class RemoveIssuesBranchName < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def change
- remove_column :issues, :branch_name, :string
- end
-end