20#ifndef ORES_IAM_REPOSITORY_ROLE_ENTITY_HPP
21#define ORES_IAM_REPOSITORY_ROLE_ENTITY_HPP
24#include "ores.database/repository/db_types.hpp"
25#include "sqlgen/PrimaryKey.hpp"
35 constexpr static const char* schema =
"public";
36 constexpr static const char* tablename =
"ores_iam_roles_tbl";
38 sqlgen::PrimaryKey<std::string> id;
39 std::string tenant_id;
42 std::string description;
43 std::string modified_by;
44 std::string performed_by;
45 std::string change_reason_code;
46 std::string change_commentary;
51std::ostream& operator<<(std::ostream& s,
const role_entity& v);
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 role in the database.
Definition role_entity.hpp:34