Mercurial > hg > soundsoftware-site
view db/migrate/.svn/text-base/20101114115359_change_projects_identifier_limit.rb.svn-base @ 382:baff1c482d98 feature_113
First cut at making frames optional in mtree output
author | Chris Cannam |
---|---|
date | Mon, 04 Apr 2011 10:48:08 +0100 |
parents | 94944d00e43c |
children |
line wrap: on
line source
class ChangeProjectsIdentifierLimit < ActiveRecord::Migration def self.up change_column :projects, :identifier, :string, :limit => nil end def self.down change_column :projects, :identifier, :string, :limit => 20 end end