11 lines
159 B
C
11 lines
159 B
C
#ifndef CORE_DATABASE_H
|
|
#define CORE_DATABASE_H
|
|
|
|
#include <sqlite3.h>
|
|
|
|
extern sqlite3 *global_database;
|
|
|
|
int
|
|
database_migrate();
|
|
|
|
#endif /* CORE_DATABASE_H */
|