mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
fcb088d263
- Modularize tests - Add migrations - Fix switch case so it actually breaks - Add in missing writes - Beginning work on custom migration to move the leaderboard to the final state
15 lines
205 B
C++
15 lines
205 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Migration {
|
|
std::string data;
|
|
std::string name;
|
|
};
|
|
|
|
namespace MigrationRunner {
|
|
void RunMigrations();
|
|
void RunSQLiteMigrations();
|
|
void MigrateLeaderboard();
|
|
};
|