98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
17 lines
398 B
Ruby
17 lines
398 B
Ruby
# rubocop:disable all
|
|
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
|