Mercurial > hg > soundsoftware-site
view db/migrate/20101114115114_change_projects_name_limit.rb @ 74:11328a082ef3 luisf
Feature #47: added a description.
Feature #49: Turned autocomplete on in the Parent Task field. This should be thorouglly tested.
author | luisf |
---|---|
date | Wed, 08 Dec 2010 18:37:21 +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