summaryrefslogtreecommitdiff
path: root/db/migrate/20130528184641_add_system_to_notes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130528184641_add_system_to_notes.rb')
-rw-r--r--db/migrate/20130528184641_add_system_to_notes.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20130528184641_add_system_to_notes.rb b/db/migrate/20130528184641_add_system_to_notes.rb
deleted file mode 100644
index 27fbf8983ac..00000000000
--- a/db/migrate/20130528184641_add_system_to_notes.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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