Files
sqlgen/include/dynamic/Table.hpp
Dr. Patrick Urbanke ab5bc10e1d Added CreateTable
2025-03-19 06:44:13 +01:00

20 lines
291 B
C++

#ifndef SQLGEN_DYNAMIC_TABLE_HPP_
#define SQLGEN_DYNAMIC_TABLE_HPP_
#include <string>
#include <vector>
#include "Column.hpp"
namespace sqlgen::dynamic {
struct Table {
std::string alias;
std::string name;
std::string schema = "public";
};
} // namespace sqlgen::dynamic
#endif