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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
174 B
Ruby
Raw Normal View History

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