mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-09 02:49:40 -06:00
20 lines
291 B
C++
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
|