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

20221219103007_add_name_to_ml_candidates.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c56279de736875e866463c065e7fb1f39199828 (plain)
1
2
3
4
5
6
# frozen_string_literal: true
class AddNameToMlCandidates < Gitlab::Database::Migration[2.1]
  def change
    add_column :ml_candidates, :name, :text # rubocop:disable Migration/AddLimitToTextColumns
  end
end