0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00
sqlpp11/tests/postgresql/usage/TabBar.h
Roland Bock 4c942600bb Started to migrate postgresql connector into sqlpp11 repo.
Removed timezone handling in the process (needs to be documented).
Note: on_conflict does not check for constraints (needs to be documented).
Note: some of the constraints tests seem to be aiming for a different static_assert.
2021-11-14 08:11:53 +01:00

62 lines
1.2 KiB
C++

#ifndef MODEL_TABBAR_H
#define MODEL_TABBAR_H
#include <sqlpp11/table.h>
#include <sqlpp11/char_sequence.h>
#include <sqlpp11/column_types.h>
namespace model
{
namespace TabBar_
{
struct C_int
{
struct _alias_t
{
static constexpr const char _literal[] = "c_int";
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
template <typename T>
struct _member_t
{
T c_int;
T& operator()()
{
return c_int;
}
const T& operator()() const
{
return c_int;
}
};
};
using _traits = ::sqlpp::make_traits<::sqlpp::bigint, sqlpp::tag::can_be_null>;
};
}
struct TabBar : sqlpp::table_t<TabBar, TabBar_::C_int>
{
using _value_type = sqlpp::no_value_t;
struct _alias_t
{
static constexpr const char _literal[] = "TabBar";
using _name_t = sqlpp::make_char_sequence<sizeof(_literal), _literal>;
template <typename T>
struct _member_t
{
T TabBar;
T& operator()()
{
return TabBar;
}
const T& operator()() const
{
return TabBar;
}
};
};
};
}
#endif