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: d8e2269d21a86a2313a45500469cef9ff7de440d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :design_management_designs_versions, :image_v432x230, :string, limit: 255
  end
end