mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
DEV: Bump rubocop_discourse (#29608)
This commit is contained in:

committed by
GitHub

parent
ff494f2f94
commit
57f4176b57
@ -10,12 +10,12 @@ class ImportScripts::Question2Answer < ImportScripts::Base
|
||||
|
||||
# CHANGE THESE BEFORE RUNNING THE IMPORTER
|
||||
|
||||
DB_HOST ||= ENV["DB_HOST"] || "localhost"
|
||||
DB_NAME ||= ENV["DB_NAME"] || "qa_db"
|
||||
DB_PW ||= ENV["DB_PW"] || ""
|
||||
DB_USER ||= ENV["DB_USER"] || "root"
|
||||
TIMEZONE ||= ENV["TIMEZONE"] || "America/Los_Angeles"
|
||||
TABLE_PREFIX ||= ENV["TABLE_PREFIX"] || "qa_"
|
||||
DB_HOST = ENV["DB_HOST"] || "localhost"
|
||||
DB_NAME = ENV["DB_NAME"] || "qa_db"
|
||||
DB_PW = ENV["DB_PW"] || ""
|
||||
DB_USER = ENV["DB_USER"] || "root"
|
||||
TIMEZONE = ENV["TIMEZONE"] || "America/Los_Angeles"
|
||||
TABLE_PREFIX = ENV["TABLE_PREFIX"] || "qa_"
|
||||
|
||||
def initialize
|
||||
super
|
||||
|
Reference in New Issue
Block a user