mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 01:04:21 +08:00
7 lines
166 B
Ruby
7 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
|