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

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

class DesignIssueIdNullable < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    change_column_null :design_management_designs, :issue_id, true
  end
end