mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-02 07:30:17 -06:00
18 lines
274 B
C++
18 lines
274 B
C++
#ifndef SQLGEN_DYNAMIC_TABLE_HPP_
|
|
#define SQLGEN_DYNAMIC_TABLE_HPP_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace sqlgen::dynamic {
|
|
|
|
struct Table {
|
|
std::string alias;
|
|
std::string name;
|
|
std::string schema = "public";
|
|
};
|
|
|
|
} // namespace sqlgen::dynamic
|
|
|
|
#endif
|