#ifndef SQLGEN_DYNAMIC_INSERT_HPP_ #define SQLGEN_DYNAMIC_INSERT_HPP_ #include #include #include "Table.hpp" namespace sqlgen::dynamic { struct Insert { Table table; std::vector columns; }; } // namespace sqlgen::dynamic #endif