20#ifndef ORES_VARIABILITY_REPOSITORY_SYSTEM_SETTING_ENTITY_HPP
21#define ORES_VARIABILITY_REPOSITORY_SYSTEM_SETTING_ENTITY_HPP
25#include "sqlgen/Timestamp.hpp"
26#include "sqlgen/PrimaryKey.hpp"
34 constexpr static const char* schema =
"public";
35 constexpr static const char* tablename =
"ores_variability_system_settings_tbl";
37 sqlgen::PrimaryKey<std::string> name;
38 std::string tenant_id;
41 std::string data_type;
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;
47 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_from =
"9999-12-31 23:59:59";
48 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_to =
"9999-12-31 23:59:59";
Database persistence layer for variability domain types.
Definition ores.variability.repository.hpp:29
Represents a system setting row in the database.
Definition system_setting_entity.hpp:33