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

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

class DropNotNullConstraintPoolRepositoryDiskPath < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  def change
    change_column_null :pool_repositories, :disk_path, true
  end
end