* Add db index to articles path * Slight stories optimizations * Select only needed fields for the flare tag * Revert the last commit (to check builds) * Return selecting only needed fields for tag
5 lines
114 B
Ruby
5 lines
114 B
Ruby
class AddIndexToArticlesPath < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_index :articles, :path
|
|
end
|
|
end
|