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

14 lines
371 B
Ruby

# frozen_string_literal: true
class AddTokenEncryptedToOperationsFeatureFlagsClients < ActiveRecord::Migration[5.1]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
def change
add_column :operations_feature_flags_clients, :token_encrypted, :string
end
# rubocop:enable Migration/PreventStrings
end