view .svn/pristine/e9/e991ef0d3aa419949ea4d57b865d3c4f1fbb3aee.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 cbb26bc654de
children
line wrap: on
line source
class AddRolesIssuesVisibility < ActiveRecord::Migration
  def self.up
    add_column :roles, :issues_visibility, :string, :limit => 30, :default => 'default', :null => false
  end

  def self.down
    remove_column :roles, :issues_visibility
  end
end