debian-mirror-gitlab/db/migrate/20190613044655_add_username_to_deploy_tokens.rb
2020-05-24 23:13:21 +05:30

10 lines
230 B
Ruby

# frozen_string_literal: true
class AddUsernameToDeployTokens < ActiveRecord::Migration[5.1]
DOWNTIME = false
def change
add_column :deploy_tokens, :username, :string # rubocop:disable Migration/PreventStrings
end
end