Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-05-02 17:14:20 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-05-02 18:51:21 +0300
commit739e797575d47ec796206865c4d82917cb2ad93d (patch)
treeda26d3b9135d693cf1786ae8c5b675784d1833a9 /db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb
parent98ae016ab207a7f4e27d151584156af6011d48d5 (diff)
Add indices for auto_canceled_by_id for PostgreSQL
Diffstat (limited to 'db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb')
-rw-r--r--db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb b/db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb
new file mode 100644
index 00000000000..b64d7e0e3f6
--- /dev/null
+++ b/db/migrate/20170502135553_create_index_ci_pipelines_auto_canceled_by_id.rb
@@ -0,0 +1,21 @@
+class CreateIndexCiPipelinesAutoCanceledById < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ # MySQL would already have the index
+ unless index_exists?(:ci_pipelines, :auto_canceled_by_id)
+ add_concurrent_index(:ci_pipelines, :auto_canceled_by_id)
+ end
+ end
+
+ def down
+ # We cannot remove index for MySQL because it's needed for foreign key
+ if Gitlab::Database.postgresql?
+ remove_concurrent_index(:ci_pipelines, :auto_canceled_by_id)
+ end
+ end
+end