Mercurial > hg > soundsoftware-site
view db/migrate/089_add_attachments_description.rb @ 794:eebd5b1f5eb0 feature_14
Fixes Bug #341.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 21 Nov 2011 15:57:33 +0000 |
parents | 513646585e45 |
children |
line wrap: on
line source
class AddAttachmentsDescription < ActiveRecord::Migration def self.up add_column :attachments, :description, :string end def self.down remove_column :attachments, :description end end