amatriain/feedbunch

View on GitHub
FeedBunch-app/db/migrate/20140519121746_add_feed_id_index_to_feed_subscriptions.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddFeedIdIndexToFeedSubscriptions < ActiveRecord::Migration[5.2]
  def change
    add_index :feed_subscriptions, [:feed_id], name: 'index_feed_subscriptions_on_feed_id'
  end
end