Skip to content
Snippets Groups Projects
Select Git revision
  • 6ab6abde0ec8d9ab1fd636dc4a8bada6c5ae500b
  • master default protected
  • 1.31
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
23 results

browserconfig.xml

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
    }