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

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

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

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