diff --git a/src/db_init.c b/src/db_init.c index 595d23ae..de4d34f3 100644 --- a/src/db_init.c +++ b/src/db_init.c @@ -526,6 +526,18 @@ db_init_tables(sqlite3 *hdl) } ret = db_init_indices(hdl); + if (ret < 0) + { + DPRINTF(E_FATAL, L_DB, "DB init error: failed to create indices\n"); + return -1; + } + + ret = db_init_triggers(hdl); + if (ret < 0) + { + DPRINTF(E_FATAL, L_DB, "DB init error: failed to create triggers\n"); + return -1; + } return ret; }