Mercurial > hg > soundsoftware-site
view db/migrate/20100705164950_change_changes_path_length_limit.rb @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children | cca12e1c1fd4 |
line wrap: on
line source
class ChangeChangesPathLengthLimit < ActiveRecord::Migration def self.up change_column :changes, :path, :text, :null => false change_column :changes, :from_path, :text end def self.down change_column :changes, :path, :string, :default => "", :null => false change_column :changes, :from_path, :string end end