????

Your IP : 18.188.71.235


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/20101114115114_change_projects_name_limit.rb

class ChangeProjectsNameLimit < ActiveRecord::Migration[4.2]
  def self.up
    change_column :projects, :name, :string, :limit => nil, :default => '', :null => false
  end

  def self.down
    change_column :projects, :name, :string, :limit => 30, :default => '', :null => false
  end
end