2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-03-16 09:22:50 -04:00
|
|
|
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
|
|
|
|
|
2015-03-16 11:20:17 -04:00
|
|
|
add_index :subscriptions,
|
|
|
|
[:subscribable_id, :subscribable_type, :user_id],
|
|
|
|
unique: true,
|
|
|
|
name: 'subscriptions_user_id_and_ref_fields'
|
2015-03-16 09:22:50 -04:00
|
|
|
end
|
|
|
|
end
|