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

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

class AddRegistrationObjectiveToUserDetail < Gitlab::Database::Migration[1.0]
  def change
    add_column :user_details, :registration_objective, :smallint
  end
end