fixing postgres tests progress

This commit is contained in:
2026-04-24 16:56:44 +02:00
parent 3a82f4891a
commit 656d045ccf
7 changed files with 32 additions and 30 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ struct airplane {
namespace field = matador::access;
using namespace matador::utils;
field::primary_key(op, "id", id);
field::attribute(op, "brand", brand, UniqueVarChar255);
field::attribute(op, "model", model, UniqueVarChar255);
field::attribute(op, "brand", brand, VarChar255);
field::attribute(op, "model", model, VarChar255);
}
};
}