summaryrefslogtreecommitdiff
path: root/db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb')
-rw-r--r--db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb b/db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb
deleted file mode 100644
index a44a1feab16..00000000000
--- a/db/migrate/20170503022512_add_last_edited_at_and_last_edited_by_id_to_notes.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddLastEditedAtAndLastEditedByIdToNotes < ActiveRecord::Migration
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def change
- add_column :notes, :last_edited_at, :timestamp
- add_column :notes, :last_edited_by_id, :integer
- end
-end