initialize database if table doesn't exist
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-01 10:39:16 -07:00
parent 022327d539
commit bb4112e145
2 changed files with 35 additions and 0 deletions

View File

@@ -57,6 +57,13 @@ func init() {
log.Fatalf("failed to connect to database: %v", err)
}
// Check if database needs to be initialized (create tables)
// does nothing if tables exist
err = dbConn.InitializeDatabase()
if err != nil {
log.Fatalf("failed to initialize database: %v", err)
}
uniqueVisits, err = dbConn.GetUniqueVisits()
if err != nil {
log.Fatalf("failed to get number of unique visits from database: %v", err)