summaryrefslogtreecommitdiff
path: root/db/migrate/20150806104937_create_abuse_reports.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20150806104937_create_abuse_reports.rb')
-rw-r--r--db/migrate/20150806104937_create_abuse_reports.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20150806104937_create_abuse_reports.rb b/db/migrate/20150806104937_create_abuse_reports.rb
deleted file mode 100644
index be4fe8d1cfd..00000000000
--- a/db/migrate/20150806104937_create_abuse_reports.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# rubocop:disable all
-class CreateAbuseReports < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :abuse_reports do |t|
- t.integer :reporter_id
- t.integer :user_id
- t.text :message
-
- t.timestamps null: true
- end
- end
-end