* Add Algolia to search and add Only My Posts filter * Actually fix Algolia index possible issue * Fix search issue * Make minor adjustments to sponsorship sidebar * Make submission rules headsup html allowed and remove devise trackable * Remove devise_trackable from application_controller * Adjust login CTA for /new * Adjust string in test to reflect changes * Quick fix for internal navigatioon draft caching issue * Add ID to internal/articles * Fix auth with Twitter in two places * Added comments to algolia and modified design * Update sidebar styles and make other small adjustments * Clean up tag styling and other small improvements * Finalize design adjustments * Add indexing condition for comments * Fix Algolia typo * Fix Algolia indexing on comment
5 lines
173 B
Ruby
5 lines
173 B
Ruby
class AddLastCommentAtToArticles < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :articles, :last_comment_at, :datetime, default: "2017-01-01 05:00:00"
|
|
end
|
|
end
|