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

20190613044655_add_username_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: 793553afe357bacf2c49354422640a6d02aac95a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddUsernameToDeployTokens < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  def change
    add_column :deploy_tokens, :username, :string
  end
end