Mercurial > hg > soundsoftware-site
view db/migrate/20101114115114_change_projects_name_limit.rb @ 758:687c9fbca255 feature_14
gross hack to fix autocompletes from being halted in the project filter chain. To be fixed.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 11 Nov 2011 17:24:10 +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