summaryrefslogtreecommitdiff
path: root/db/migrate/20150313012111_create_subscriptions_table.rb
blob: 8adb193b27fc40f837f7a781aa0b7f7827d64c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rubocop:disable all
class CreateSubscriptionsTable < ActiveRecord::Migration
  def change
    create_table :subscriptions do |t|
      t.integer :user_id
      t.references :subscribable, polymorphic: true
      t.boolean :subscribed
      
      t.timestamps
    end

    add_index :subscriptions, 
              [:subscribable_id, :subscribable_type, :user_id],
              unique: true,
              name: 'subscriptions_user_id_and_ref_fields'
  end
end