mirror of
https://github.com/getml/sqlgen.git
synced 2026-02-17 14:18:39 -06:00
20 lines
278 B
C++
20 lines
278 B
C++
#ifndef SQLGEN_DYNAMIC_COLUMN_HPP_
|
|
#define SQLGEN_DYNAMIC_COLUMN_HPP_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Type.hpp"
|
|
|
|
namespace sqlgen::dynamic {
|
|
|
|
struct Column {
|
|
std::string alias;
|
|
std::string name;
|
|
Type type;
|
|
};
|
|
|
|
} // namespace sqlgen::dynamic
|
|
|
|
#endif
|