fixed postgres tests

This commit is contained in:
2025-02-15 12:36:21 +01:00
parent 6e64ba99de
commit ec96c15905
16 changed files with 89 additions and 58 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ struct ingredient
{
unsigned int id{};
std::string name;
std::vector<object::object_ptr<recipe>> recipes;
std::vector<object::object_ptr<recipe>> recipes{};
template<class Operator>
void process(Operator &op) {
@@ -31,7 +31,7 @@ struct recipe
{
unsigned int id{};
std::string name;
std::vector<object::object_ptr<ingredient>> ingredients;
std::vector<object::object_ptr<ingredient>> ingredients{};
template<class Operator>
void process(Operator &op) {