summaryrefslogtreecommitdiff
path: root/db/migrate/20150313012111_create_subscriptions_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20150313012111_create_subscriptions_table.rb')
-rw-r--r--db/migrate/20150313012111_create_subscriptions_table.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20150313012111_create_subscriptions_table.rb b/db/migrate/20150313012111_create_subscriptions_table.rb
deleted file mode 100644
index 37011504b49..00000000000
--- a/db/migrate/20150313012111_create_subscriptions_table.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# rubocop:disable all
-class CreateSubscriptionsTable < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :subscriptions do |t|
- t.integer :user_id
- t.references :subscribable, polymorphic: true
- t.boolean :subscribed
-
- t.timestamps null: true
- end
-
- add_index :subscriptions,
- [:subscribable_id, :subscribable_type, :user_id],
- unique: true,
- name: 'subscriptions_user_id_and_ref_fields'
- end
-end