summaryrefslogtreecommitdiff
path: root/db/migrate/20181120151656_add_token_encrypted_to_ci_runners.rb
blob: 2b78d39090728d5b655c6918d0650700464a0d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddTokenEncryptedToCiRunners < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_runners, :token_encrypted, :string # rubocop:disable Migration/PreventStrings
  end
end