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

20191206014412_add_image_to_design_management_designs_versions.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54ef9b74f29ca6a7ba9aa69f57f55f6afd7dc11a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddImageToDesignManagementDesignsVersions < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :design_management_designs_versions, :image_v432x230, :string, limit: 255
  end
  # rubocop:enable Migration/PreventStrings
end