pgLab/pglablib/sqlast/CreateTable.h

22 lines
207 B
C
Raw Normal View History

#pragma once
#include "Statement.h"
#include <memory>
namespace sqlast {
class ColumnDefinition;
class TableConstraint;
class CreateTable: public Statement
{
public:
CreateTable();
private:
};
}