2019-09-30 21:07:59 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddUsernameToDeployTokens < ActiveRecord::Migration[5.1]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2019-12-04 20:38:33 +05:30
|
|
|
add_column :deploy_tokens, :username, :string # rubocop:disable Migration/AddLimitToStringColumns
|
2019-09-30 21:07:59 +05:30
|
|
|
end
|
|
|
|
end
|