19 lines
413 B
C
19 lines
413 B
C
|
|
/**
|
||
|
|
* @file mix_cc/sql/make_table.h
|
||
|
|
* @brief 创建表
|
||
|
|
* @author Cat (null.null.null@qq.com)
|
||
|
|
* @version 0.1
|
||
|
|
* @date 2021-09-17
|
||
|
|
*
|
||
|
|
* Copyright: Baosight Co. Ltd.
|
||
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
#define BOOST_HANA_CONFIG_ENABLE_STRING_UDL
|
||
|
|
#include "mix_cc/type/mix_time.h"
|
||
|
|
#include "mix_cc/sql/column.h"
|
||
|
|
#include "mix_cc/sql/preprocessor.h"
|
||
|
|
|
||
|
|
using namespace boost::hana::literals;
|