debian-mirror-gitlab/db/migrate/20190606054742_add_token_encrypted_to_operations_feature_flags_clients.rb

14 lines
371 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
class AddTokenEncryptedToOperationsFeatureFlagsClients < ActiveRecord::Migration[5.1]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-09-30 21:07:59 +05:30
def change
2020-05-24 23:13:21 +05:30
add_column :operations_feature_flags_clients, :token_encrypted, :string
2019-09-30 21:07:59 +05:30
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-09-30 21:07:59 +05:30
end