debian-mirror-gitlab/db/migrate/20181123135036_drop_not_null_constraint_pool_repository_disk_path.rb
2019-02-15 15:39:39 +05:30

9 lines
215 B
Ruby

# frozen_string_literal: true
class DropNotNullConstraintPoolRepositoryDiskPath < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
change_column_null :pool_repositories, :disk_path, true
end
end