mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-26 16:46:31 +00:00
Migrations only flag
This commit is contained in:
parent
6b92536c41
commit
194cd669ee
@ -213,6 +213,13 @@ int main(int argc, char** argv) {
|
|||||||
// Run migrations should any need to be run.
|
// Run migrations should any need to be run.
|
||||||
MigrationRunner::RunSQLiteMigrations();
|
MigrationRunner::RunSQLiteMigrations();
|
||||||
|
|
||||||
|
// Check for the --migrations-only flag
|
||||||
|
if ((argc > 1 &&
|
||||||
|
(strcmp(argv[1], "--migrations-only") == 0 || strcmp(argv[1], "-m") == 0))) {
|
||||||
|
LOG("Migrations only flag detected. Exiting.");
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
//If the first command line argument is -a or --account then make the user
|
//If the first command line argument is -a or --account then make the user
|
||||||
//input a username and password, with the password being hidden.
|
//input a username and password, with the password being hidden.
|
||||||
bool createAccount = Database::Get()->GetAccountCount() == 0 && Game::config->GetValue("skip_account_creation") != "1";
|
bool createAccount = Database::Get()->GetAccountCount() == 0 && Game::config->GetValue("skip_account_creation") != "1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user