debian-mirror-gitlab/db/migrate/20190711200053_change_deploy_tokens_token_not_null.rb
2019-12-04 20:38:33 +05:30

12 lines
240 B
Ruby

# frozen_string_literal: true
class ChangeDeployTokensTokenNotNull < ActiveRecord::Migration[5.1]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
change_column_null :deploy_tokens, :token, true
end
end