Fix data integrity exception thrown when attempting to store updated server egg variables

This commit is contained in:
Dane Everitt
2018-03-10 13:55:24 -06:00
parent 08a112f027
commit abd2a42471
3 changed files with 10 additions and 5 deletions

View File

@@ -105,7 +105,7 @@ class StartupModificationService
'server_id' => $server->id,
'variable_id' => $result->id,
], [
'variable_value' => $result->value,
'variable_value' => $result->value ?? '',
]);
});
}