view .svn/pristine/f7/f7dd5a21e5b6b1fa4c68720d5809c8a2999e974e.svn-base @ 1219:3286032e15cf live

Some layout and fixes
author Chris Cannam
date Tue, 12 Mar 2013 13:24:05 +0000
parents cbb26bc654de
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