mirror of
https://github.com/getml/sqlgen.git
synced 2025-12-31 06:30:18 -06:00
19 lines
262 B
C++
19 lines
262 B
C++
#ifndef SQLGEN_DYNAMIC_DROP_HPP_
|
|
#define SQLGEN_DYNAMIC_DROP_HPP_
|
|
|
|
#include <optional>
|
|
|
|
#include "Table.hpp"
|
|
|
|
namespace sqlgen::dynamic {
|
|
|
|
struct Drop {
|
|
bool if_exists = false;
|
|
bool cascade = false;
|
|
Table table;
|
|
};
|
|
|
|
} // namespace sqlgen::dynamic
|
|
|
|
#endif
|