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

20220316095126_add_creator_id_to_deploy_tokens.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22a92081b37944357345257efe59c3c8006d5e23 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCreatorIdToDeployTokens < Gitlab::Database::Migration[1.0]
  def change
    add_column :deploy_tokens, :creator_id, :bigint
  end
end