mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
20 lines
304 B
C
20 lines
304 B
C
|
#pragma once
|
||
|
|
||
|
#include "Database.h"
|
||
|
|
||
|
#include "dCommonVars.h"
|
||
|
#include "Game.h"
|
||
|
#include "dCommonVars.h"
|
||
|
#include "dLogger.h"
|
||
|
|
||
|
struct Migration {
|
||
|
std::string data;
|
||
|
std::string name;
|
||
|
};
|
||
|
|
||
|
class MigrationRunner {
|
||
|
public:
|
||
|
static void RunMigrations();
|
||
|
static Migration LoadMigration(std::string path);
|
||
|
};
|