amatriain/feedbunch

View on GitHub
FeedBunch-app/db/migrate/20141206181425_remove_http_caching_from_feeds.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RemoveHttpCachingFromFeeds < ActiveRecord::Migration[5.2]
  def up
    remove_column :feeds, :etag
    remove_column :feeds, :last_modified
  end

  def down
    add_column :feeds, :etag, :text
    add_column :feeds, :last_modified, :text
  end
end