????

Your IP : 3.17.73.197


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/094_change_projects_homepage_limit.rb

class ChangeProjectsHomepageLimit < ActiveRecord::Migration[4.2]
  def self.up
    change_column :projects, :homepage, :string, :limit => nil, :default => ''
  end

  def self.down
    change_column :projects, :homepage, :string, :limit => 60, :default => ''
  end
end