Mercurial > hg > soundsoftware-site
view db/migrate/087_change_projects_description_to_text.rb @ 842:899414bdd24e bug_366
Further adjustments to Documents, Files, Publications texts to clarify the difference between them
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 01 Feb 2012 11:45:54 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
class ChangeProjectsDescriptionToText < ActiveRecord::Migration def self.up change_column :projects, :description, :text, :null => true, :default => nil end def self.down end end