"source/i18n/locale.mjs" did not exist on "7556b994db65bf933d6c13e695cc8573412d3b9e"
Select Git revision
job-handler.go
config.go 425 B
// Copyright 2023 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0
package jobqueue
var globalTableNamePrefix = "job_queue_"
// SetTableNamePrefix sets the global table name prefix
// This is useful for when you want to use the same database for multiple applications
// and you want to avoid name collisions
// The default value is "job_queue_"
func SetTableNamePrefix(prefix string) {
globalTableNamePrefix = prefix
}