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

20210113231546_add_context_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: 7fac45e9952ec302960ede676e5279630a54eb3e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :experiment_subjects, :context, :jsonb, default: {}, null: false
  end
end