mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 08:46:01 +01:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
|
|
class AddProjectsDefaultIssueQueryId < ActiveRecord::Migration[4.2]
|
||
|
|
def self.up
|
||
|
|
add_column :projects, :default_issue_query_id, :integer, :default => nil
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :projects, :default_issue_query_id
|
||
|
|
end
|
||
|
|
end
|