Skip to content
Snippets Groups Projects
Select Git revision
  • e9cbcfc578d58748bb45e1355a5a3d9e4a1d24d8
  • master default protected
  • 1.31
  • 4.24.2
  • 4.24.1
  • 4.24.0
  • 4.23.6
  • 4.23.5
  • 4.23.4
  • 4.23.3
  • 4.23.2
  • 4.23.1
  • 4.23.0
  • 4.22.3
  • 4.22.2
  • 4.22.1
  • 4.22.0
  • 4.21.0
  • 4.20.1
  • 4.20.0
  • 4.19.0
  • 4.18.0
  • 4.17.0
23 results

save-button.mjs

Blame
  • 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
    }