mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
8 lines
185 B
Ruby
8 lines
185 B
Ruby
|
require "common_passwords/common_passwords"
|
||
|
|
||
|
class ClearCommonPasswordsCache < ActiveRecord::Migration
|
||
|
def change
|
||
|
$redis.without_namespace.del CommonPasswords::LIST_KEY
|
||
|
end
|
||
|
end
|