7 lines
210 B
Ruby
7 lines
210 B
Ruby
|
# 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
|