debian-mirror-gitlab/db/migrate/20221219103007_add_name_to_ml_candidates.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
210 B
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# 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