mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
533800a87b
This commit includes other various improvements to watched words. auto_silence_first_post_regex site setting was removed because it overlapped with 'require approval' watched words.
8 lines
185 B
Ruby
8 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddReplacementToWatchedWords < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :watched_words, :replacement, :string, null: true
|
|
end
|
|
end
|