crowdAI/crowdai

View on GitHub
doc/technical/archived_migrations/20170501143249_remove_comment_count_from_articles.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RemoveCommentCountFromArticles < ActiveRecord::Migration[5.0]
  def change
    remove_column :articles, :comment_count, :integer
  end
end