mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
11 lines
283 B
Ruby
11 lines
283 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RemovePostTimingsSummaryIndex < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
remove_index :post_timings,
|
||
|
column: %i[topic_id post_number],
|
||
|
name: :post_timings_summary,
|
||
|
if_exists: true
|
||
|
end
|
||
|
end
|