summaryrefslogtreecommitdiff
path: root/db/migrate/20160316123110_ci_runners_token_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160316123110_ci_runners_token_index.rb')
-rw-r--r--db/migrate/20160316123110_ci_runners_token_index.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20160316123110_ci_runners_token_index.rb b/db/migrate/20160316123110_ci_runners_token_index.rb
new file mode 100644
index 00000000000..67bf5b4f978
--- /dev/null
+++ b/db/migrate/20160316123110_ci_runners_token_index.rb
@@ -0,0 +1,13 @@
+class CiRunnersTokenIndex < ActiveRecord::Migration
+ disable_ddl_transaction!
+
+ def change
+ args = [:ci_runners, :token]
+
+ if Gitlab::Database.postgresql?
+ args << { algorithm: :concurrently }
+ end
+
+ add_index(*args)
+ end
+end