20#ifndef ORES_IAM_REPOSITORY_ACCOUNT_PARTY_ENTITY_HPP
21#define ORES_IAM_REPOSITORY_ACCOUNT_PARTY_ENTITY_HPP
24#include "ores.database/repository/db_types.hpp"
25#include "sqlgen/PrimaryKey.hpp"
37 constexpr static const char* schema =
"public";
38 constexpr static const char* tablename =
"ores_iam_account_parties_tbl";
40 sqlgen::PrimaryKey<std::string> account_id;
41 std::string tenant_id;
44 std::string modified_by;
45 std::string performed_by;
46 std::string change_reason_code;
47 std::string change_commentary;
ores::database::repository::db_timestamp db_timestamp
Canonical database timestamp type.
Definition database_info_entity.hpp:31
Database persistence layer for IAM domain types.
Definition account_entity.hpp:28
Represents a account party in the database.
Definition account_party_entity.hpp:36