debian-mirror-gitlab/db/migrate/20201106193452_add_converted_at_to_experiment_users.rb

10 lines
216 B
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# 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