1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-12-01 01:16:08 +02:00

[#5607] rename aux.db to auxiliary.db

This commit is contained in:
Gani Georgiev
2024-10-06 16:41:05 +03:00
parent 292c34ee52
commit 0407de9cf5
7 changed files with 3649 additions and 3640 deletions

View File

@@ -157,10 +157,10 @@ type App interface {
// In a transaction the ConcurrentDB() and NonconcurrentDB() refer to the same *dbx.TX instance.
NonconcurrentDB() dbx.Builder
// AuxDB returns the default app auxiliary db instance (pb_data/aux.db).
// AuxDB returns the default app auxiliary db instance (pb_data/auxiliary.db).
AuxDB() dbx.Builder
// AuxNonconcurrentDB returns the nonconcurrent app auxiliary db instance (pb_data/aux.db)..
// AuxNonconcurrentDB returns the nonconcurrent app auxiliary db instance (pb_data/auxiliary.db)..
//
// The returned db instance is limited only to a single open connection,
// meaning that it can process only 1 db operation at a time (other operations will be queued up).