2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2015-04-26 12:48:37 +05:30
|
|
|
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
|