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

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

class AddConvertedAtToExperimentSubjects < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :experiment_subjects, :converted_at, :datetime_with_timezone
  end
end