mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 22:05:56 +01:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
|
|
class AddJournalsPrivateNotes < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
add_column :journals, :private_notes, :boolean, :default => false, :null => false
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :journals, :private_notes
|
||
|
|
end
|
||
|
|
end
|