summaryrefslogtreecommitdiff
path: root/db/migrate/20210113231532_add_converted_at_to_experiment_subjects.rb
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