view .svn/pristine/1d/1dd21beebda1cb6cbb50dd1ef6a53e3977411fdf.svn-base @ 1625:808a40a7cac7 live

Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author Chris Cannam
date Thu, 07 Feb 2019 13:48:00 +0000
parents dffacf8a6908
children
line wrap: on
line source
class AddCustomFieldsDescription < ActiveRecord::Migration
  def up
    add_column :custom_fields, :description, :text
  end

  def down
    remove_column :custom_fields, :description
  end
end