20120930112914_add_journals_private_notes.rb
9 lines
| 223 B
| text/x-ruby
|
RubyLexer
|
r10336 | 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 | ||||