summaryrefslogtreecommitdiff
path: root/db/migrate/20181123135036_drop_not_null_constraint_pool_repository_disk_path.rb
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