fix: dDatabase

This commit is contained in:
Xiphoseer
2024-01-03 22:41:05 +01:00
parent 0f1e226960
commit 7509237e69
13 changed files with 69 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <string>
struct Migration {
std::string data;
std::string name;
};
namespace MigrationRunner {
void RunMigrations();
void RunSQLiteMigrations();
};