mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
42870028e4
Only shooting gallery had a value put in the wrong column. All others were either already correct or unimplemented.
14 lines
177 B
C++
14 lines
177 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct Migration {
|
|
std::string data;
|
|
std::string name;
|
|
};
|
|
|
|
namespace MigrationRunner {
|
|
void RunMigrations();
|
|
void RunSQLiteMigrations();
|
|
};
|