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

22 lines
354 B
C++

#ifndef SQLGEN_DYNAMIC_CREATETABLE_HPP_
#define SQLGEN_DYNAMIC_CREATETABLE_HPP_
#include <string>
#include <vector>
#include "Column.hpp"
#include "Table.hpp"
namespace sqlgen::dynamic {
struct CreateTable {
Table table;
std::vector<Column> columns;
bool if_not_exists = true;
// TODO: Constraints
};
} // namespace sqlgen::dynamic
#endif