summaryrefslogtreecommitdiff
path: root/db/migrate/20150818213832_add_sent_notifications.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20150818213832_add_sent_notifications.rb')
-rw-r--r--db/migrate/20150818213832_add_sent_notifications.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20150818213832_add_sent_notifications.rb b/db/migrate/20150818213832_add_sent_notifications.rb
deleted file mode 100644
index 45e95a843e1..00000000000
--- a/db/migrate/20150818213832_add_sent_notifications.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class AddSentNotifications < ActiveRecord::Migration[4.2]
- def change
- create_table :sent_notifications do |t|
- t.references :project
- t.references :noteable, polymorphic: true
- t.references :recipient
- t.string :commit_id
- t.string :reply_key, null: false
- end
-
- add_index :sent_notifications, :reply_key, unique: true
- end
-end