mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 06:15:59 +01:00
10 lines
218 B
Ruby
10 lines
218 B
Ruby
|
|
class AddIssuesIsPrivate < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_column :issues, :is_private, :boolean, :default => false, :null => false
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_column :issues, :is_private
|
||
|
|
end
|
||
|
|
end
|