mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
20 lines
270 B
Go
20 lines
270 B
Go
package migrate
|
|
|
|
import "sync"
|
|
|
|
// Supported database dialects.
|
|
const (
|
|
MySQL = "mysql"
|
|
SQLite3 = "sqlite3"
|
|
)
|
|
|
|
var Dialects = map[string]Migrations{
|
|
MySQL: DialectMySQL,
|
|
SQLite3: DialectSQLite3,
|
|
}
|
|
|
|
var once = map[string]*sync.Once{
|
|
MySQL: {},
|
|
SQLite3: {},
|
|
}
|