debian-mirror-gitlab/db/migrate/20130528184641_add_system_to_notes.rb
2014-09-02 14:37:02 +02:00

17 lines
376 B
Ruby

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