#pragma once // generated by scripts/ddl2cpp tests/postgresql/usage/BlobSample.sql tests/postgresql/usage/BlobSample model #include #include #include namespace model { namespace BlobSample_ { struct Id { struct _alias_t { static constexpr const char _literal[] = "id"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T id; T& operator()() { return id; } const T& operator()() const { return id; } }; }; using _traits = sqlpp::make_traits; }; struct Data { struct _alias_t { static constexpr const char _literal[] = "data"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T data; T& operator()() { return data; } const T& operator()() const { return data; } }; }; using _traits = sqlpp::make_traits; }; } // namespace BlobSample_ struct BlobSample: sqlpp::table_t { struct _alias_t { static constexpr const char _literal[] = "blob_sample"; using _name_t = sqlpp::make_char_sequence; template struct _member_t { T blobSample; T& operator()() { return blobSample; } const T& operator()() const { return blobSample; } }; }; }; } // namespace model