mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
5f64fd0a21
Introduce new patterns for direct sql that are safe and fast. MiniSql is not prone to memory bloat that can happen with direct PG usage. It also has an extremely fast materializer and very a convenient API - DB.exec(sql, *params) => runs sql returns row count - DB.query(sql, *params) => runs sql returns usable objects (not a hash) - DB.query_hash(sql, *params) => runs sql returns an array of hashes - DB.query_single(sql, *params) => runs sql and returns a flat one dimensional array - DB.build(sql) => returns a sql builder See more at: https://github.com/discourse/mini_sql
13 lines
366 B
Ruby
13 lines
366 B
Ruby
module Jobs
|
|
class MigrateCensoredWords < Jobs::Onceoff
|
|
def execute_onceoff(args)
|
|
row = DB.query_single("SELECT value FROM site_settings WHERE name = 'censored_words'")
|
|
if row.count > 0
|
|
row.first.split('|').each do |word|
|
|
WatchedWord.create(word: word, action: WatchedWord.actions[:censor])
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|