##// END OF EJS Templates
Allow key authentication when deleting issues (with tests) #6447...
Allow key authentication when deleting issues (with tests) #6447 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4367 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r503:92b02014d21f
r4253:c55e060bab62
Show More
042_create_issue_relations.rb
14 lines | 394 B | text/x-ruby | RubyLexer
/ db / migrate / 042_create_issue_relations.rb
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