added alter table command to fluent query builder (progress)

This commit is contained in:
Sascha Kühl
2025-11-03 16:21:26 +01:00
parent 557abecf91
commit c3c7ea57a2
22 changed files with 451 additions and 26 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef MATADOR_QUERY_SCHEMA_FIXTURE_HPP
#define MATADOR_QUERY_SCHEMA_FIXTURE_HPP
#include "matador/sql/connection_pool.hpp"
namespace matador::test {
class SchemaFixture {
public:
SchemaFixture();
protected:
sql::connection_pool pool;
};
}
#endif //MATADOR_QUERY_SCHEMA_FIXTURE_HPP