2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2013-05-30 19:16:49 -04:00
|
|
|
class AddSystemToNotes < ActiveRecord::Migration
|
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
end
|
|
|
|
|
|
|
|
def up
|
|
|
|
add_column :notes, :system, :boolean, default: false, null: false
|
|
|
|
|
|
|
|
Note.reset_column_information
|
|
|
|
Note.update_all(system: false)
|
|
|
|
Note.where("note like '_status changed to%'").update_all(system: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :notes, :system
|
|
|
|
end
|
|
|
|
end
|