Mercurial > hg > soundsoftware-site
view .svn/pristine/3d/3dff9c6069908256974f3f7783cf2d5ebeafb576.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 CreateIssueRelations < ActiveRecord::Migration def self.up create_table :issue_relations do |t| t.column :issue_from_id, :integer, :null => false t.column :issue_to_id, :integer, :null => false t.column :relation_type, :string, :default => "", :null => false t.column :delay, :integer end end def self.down drop_table :issue_relations end end