1
0
Mirror von https://github.com/redmine/redmine.git synchronisiert 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20120930112914_add_journals_private_notes.rb

10 Zeilen
228 B
Ruby

class AddJournalsPrivateNotes < ActiveRecord::Migration[4.2]
def up
add_column :journals, :private_notes, :boolean, :default => false, :null => false
end
def down
remove_column :journals, :private_notes
end
end