Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220627140315_add_last_feature_flag_updated_at_to_operations_feature_flags_clients.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9309f4899abc8617864ab942b577f7273056fc2d (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddLastFeatureFlagUpdatedAtToOperationsFeatureFlagsClients < Gitlab::Database::Migration[2.0]
  def change
    add_column :operations_feature_flags_clients, :last_feature_flag_updated_at, :datetime_with_timezone
  end
end