debian-mirror-gitlab/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
2018-12-23 12:14:25 +05:30

12 lines
247 B
Ruby

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