Files
gitlab-foss/db/migrate/20241001163638_add_default_valueto_editor_column.rb
2024-10-11 12:15:51 +00:00

10 lines
217 B
Ruby

# frozen_string_literal: true
class AddDefaultValuetoEditorColumn < Gitlab::Database::Migration[2.2]
milestone '17.5'
def change
change_column_default :workspaces, :editor, from: nil, to: 'webide'
end
end