debian-mirror-gitlab/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
2019-02-15 15:39:39 +05:30

11 lines
252 B
Ruby

# frozen_string_literal: true
class AddEncryptedRunnersTokenToProjects < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :projects, :runners_token_encrypted, :string
end
end