Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
14
db/migrate/042_create_issue_relations.rb
Normal file
14
db/migrate/042_create_issue_relations.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue