mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:17:08 +08:00
008b700a3f
This patch upgrades Rails to version 7.0.2.4.
10 lines
213 B
Ruby
10 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "common_passwords"
|
|
|
|
class ClearCommonPasswordsCache < ActiveRecord::Migration[4.2]
|
|
def change
|
|
Discourse.redis.without_namespace.del CommonPasswords::LIST_KEY
|
|
end
|
|
end
|