summaryrefslogtreecommitdiff
path: root/nexus/database/messages.go
blob: b2cb8e4202b7d09f2a58dc927b52ab8ee7f76b4a (plain)
1
2
3
4
5
6
7
8
9
package database

const (
	ConnectionFailed = "Failed to connect to database: %v"
	PoolConfigFailed = "Failed to configure connection pool: %v"
	Connected        = "Connected to database: %s"
	MigrationFailed  = "Migration failed: %v"
	MigrationDone    = "Migrations complete"
)