mirror of
https://github.com/discourse/discourse.git
synced 2025-03-11 13:05:40 +08:00

The `notifications.id` column is the most probable column to run out of values. This is because it is an `int` column that has only 2147483647 values and many notifications are generated on a regular basis in an active community. This commit migrates the column to `bigint`. These migrations do not use `ALTER TABLE ... COLUMN ... TYPE` in order to avoid the `ACCESS EXCLUSIVE` lock on the entire table. Instead, they create a new `bigint` column, copy the values to the new column and then sets the new column as primary key. Related columns (see `user_badges`, `shelved_notifications`) will be migrated in a follow-up commit.
34 lines
1022 B
Ruby
34 lines
1022 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropOldNotificationIdIndexes < ActiveRecord::Migration[7.0]
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
# Drop old indexes
|
|
results =
|
|
execute(
|
|
"SELECT indexname, indexdef FROM pg_indexes WHERE tablename = 'notifications' AND indexdef SIMILAR TO '%\\mold_id\\M%'",
|
|
)
|
|
results.each do |res|
|
|
indexname, indexdef = res["indexname"], res["indexdef"]
|
|
execute "DROP INDEX #{Rails.env.test? ? "" : "CONCURRENTLY"} IF EXISTS #{indexname}"
|
|
end
|
|
|
|
# Remove `_bigint` suffix from indexes
|
|
results =
|
|
execute(
|
|
"SELECT indexname, indexdef FROM pg_indexes WHERE tablename = 'notifications' AND indexdef SIMILAR TO '%\\mid\\M%'",
|
|
)
|
|
results.each do |res|
|
|
indexname, indexdef = res["indexname"], res["indexdef"]
|
|
if indexname.include?("_bigint")
|
|
execute "ALTER INDEX #{indexname} RENAME TO #{indexname.gsub(/_bigint$/, "")}"
|
|
end
|
|
end
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|