Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
evergreen / db / migrate / 04_add_custom_path_support.rb
Size: Mime:
class AddCustomPathSupport < ActiveRecord::Migration[5.1]
  def change
    rename_column :evergreen_pages, :cached_path, :path
    add_column :evergreen_pages, :using_custom_path, :boolean,  default: false
  end
end