98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
17 lines
463 B
Ruby
17 lines
463 B
Ruby
# 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
|