view db/migrate/.svn/text-base/20101114115114_change_projects_name_limit.rb.svn-base @ 737:1ce6efe3db0e feature_318

Last "fix" was completely bogus. Here's a real one (for situation where URL has nothing beyond the location)
author Chris Cannam
date Fri, 04 Nov 2011 16:42:49 +0000
parents 94944d00e43c
children
line wrap: on
line source
class ChangeProjectsNameLimit < ActiveRecord::Migration
  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