Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150313012111_create_subscriptions_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1d4d9dedc57048388dfe1a3109c7fc6c09ace7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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