gitlab-org--gitlab-foss/db/migrate/20210113231532_add_converte...

10 lines
222 B
Ruby

# 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