summaryrefslogtreecommitdiff
path: root/db/migrate/20161223034433_add_estimate_to_issuables_ce.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161223034433_add_estimate_to_issuables_ce.rb')
-rw-r--r--db/migrate/20161223034433_add_estimate_to_issuables_ce.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/migrate/20161223034433_add_estimate_to_issuables_ce.rb b/db/migrate/20161223034433_add_estimate_to_issuables_ce.rb
deleted file mode 100644
index 75bea41387c..00000000000
--- a/db/migrate/20161223034433_add_estimate_to_issuables_ce.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-class AddEstimateToIssuablesCe < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- unless column_exists?(:issues, :time_estimate)
- add_column :issues, :time_estimate, :integer
- end
-
- unless column_exists?(:merge_requests, :time_estimate)
- add_column :merge_requests, :time_estimate, :integer
- end
- end
-
- def down
- if column_exists?(:issues, :time_estimate)
- remove_column :issues, :time_estimate
- end
-
- if column_exists?(:merge_requests, :time_estimate)
- remove_column :merge_requests, :time_estimate
- end
- end
-end