mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
66 lines
1.8 KiB
C
66 lines
1.8 KiB
C
|
// generated by scripts/ddl2cpp tests/postgresql/usage/BlobSample.sql tests/postgresql/usage/BlobSample model
|
||
|
#ifndef MODEL_BLOBSAMPLE_H
|
||
|
#define MODEL_BLOBSAMPLE_H
|
||
|
|
||
|
#include <sqlpp11/table.h>
|
||
|
#include <sqlpp11/data_types.h>
|
||
|
#include <sqlpp11/char_sequence.h>
|
||
|
|
||
|
namespace model
|
||
|
{
|
||
|
namespace BlobSample_
|
||
|
{
|
||
|
struct Id
|
||
|
{
|
||
|
struct _alias_t
|
||
|
{
|
||
|
static constexpr const char _literal[] = "id";
|
||
|
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
|
||
|
template<typename T>
|
||
|
struct _member_t
|
||
|
{
|
||
|
T id;
|
||
|
T& operator()() { return id; }
|
||
|
const T& operator()() const { return id; }
|
||
|
};
|
||
|
};
|
||
|
using _traits = sqlpp::make_traits<sqlpp::bigint, sqlpp::tag::must_not_insert, sqlpp::tag::must_not_update, sqlpp::tag::can_be_null>;
|
||
|
};
|
||
|
struct Data
|
||
|
{
|
||
|
struct _alias_t
|
||
|
{
|
||
|
static constexpr const char _literal[] = "data";
|
||
|
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
|
||
|
template<typename T>
|
||
|
struct _member_t
|
||
|
{
|
||
|
T data;
|
||
|
T& operator()() { return data; }
|
||
|
const T& operator()() const { return data; }
|
||
|
};
|
||
|
};
|
||
|
using _traits = sqlpp::make_traits<sqlpp::blob, sqlpp::tag::can_be_null>;
|
||
|
};
|
||
|
} // namespace BlobSample_
|
||
|
|
||
|
struct BlobSample: sqlpp::table_t<BlobSample,
|
||
|
BlobSample_::Id,
|
||
|
BlobSample_::Data>
|
||
|
{
|
||
|
struct _alias_t
|
||
|
{
|
||
|
static constexpr const char _literal[] = "blob_sample";
|
||
|
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
|
||
|
template<typename T>
|
||
|
struct _member_t
|
||
|
{
|
||
|
T blobSample;
|
||
|
T& operator()() { return blobSample; }
|
||
|
const T& operator()() const { return blobSample; }
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
} // namespace model
|
||
|
#endif
|