mirror of
https://github.com/netdata/netdata.git
synced 2025-04-25 21:43:55 +00:00

* For new installation skip database migration steps * Simplify logging * Count database tables to determine if database is empty * Report extended error message
14 lines
504 B
C
14 lines
504 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
#ifndef NETDATA_SQLITE_DB_MIGRATION_H
|
|
#define NETDATA_SQLITE_DB_MIGRATION_H
|
|
|
|
#include "daemon/common.h"
|
|
#include "sqlite3.h"
|
|
|
|
|
|
int perform_database_migration(sqlite3 *database, int target_version);
|
|
int perform_context_database_migration(sqlite3 *database, int target_version);
|
|
int table_exists_in_database(sqlite3 *database, const char *table);
|
|
int perform_ml_database_migration(sqlite3 *database, int target_version);
|
|
|
|
#endif //NETDATA_SQLITE_DB_MIGRATION_H
|