summaryrefslogtreecommitdiff
path: root/db/migrate/20170816153940_add_index_on_ci_builds_protected.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170816153940_add_index_on_ci_builds_protected.rb')
-rw-r--r--db/migrate/20170816153940_add_index_on_ci_builds_protected.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20170816153940_add_index_on_ci_builds_protected.rb b/db/migrate/20170816153940_add_index_on_ci_builds_protected.rb
new file mode 100644
index 00000000000..caf7c705a6e
--- /dev/null
+++ b/db/migrate/20170816153940_add_index_on_ci_builds_protected.rb
@@ -0,0 +1,15 @@
+class AddIndexOnCiBuildsProtected < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ add_concurrent_index :ci_builds, :protected
+ end
+
+ def down
+ remove_concurrent_index :ci_builds, :protected if index_exists?(:ci_builds, :protected)
+ end
+end