mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
8 lines
166 B
Ruby
8 lines
166 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddPostsIndexIncludingDeleted < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :posts, %i[user_id created_at]
|
|
end
|
|
end
|