mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
19 lines
270 B
Go
19 lines
270 B
Go
package enum
|
|
|
|
// Supported database(s)
|
|
const (
|
|
MySQL = "mysql"
|
|
MariaDB = "mariadb"
|
|
SQLite3 = "sqlite3"
|
|
)
|
|
|
|
// Future database(s)
|
|
const (
|
|
Postgres = "postgres"
|
|
)
|
|
|
|
// Test database(s)
|
|
const (
|
|
SQLiteTestDB = ".test.db"
|
|
SQLiteMemoryDSN = ":memory:?cache=shared"
|
|
)
|