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

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

class AddDeletedOnToMlExperiments < Gitlab::Database::Migration[2.0]
  def change
    add_column :ml_experiments, :deleted_on, :datetime_with_timezone, index: true
  end
end