gitlab-org--gitlab-foss/db/migrate/20220316095126_add_creator_...

8 lines
174 B
Ruby

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