mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 04:13:39 +08:00
8 lines
233 B
Ruby
8 lines
233 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RemovePostTimingsSummaryIndex < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
remove_index :post_timings, column: [:topic_id, :post_number], name: :post_timings_summary, if_exists: true
|
||
|
end
|
||
|
end
|