20#ifndef ORES_DATABASE_REPOSITORY_DATABASE_INFO_ENTITY_HPP
21#define ORES_DATABASE_REPOSITORY_DATABASE_INFO_ENTITY_HPP
26#include "sqlgen/Timestamp.hpp"
27#include "sqlgen/PrimaryKey.hpp"
35 constexpr static const char* schema =
"public";
36 constexpr static const char* tablename =
"ores_database_info_tbl";
38 sqlgen::PrimaryKey<std::string> id;
39 std::string schema_version;
40 std::string build_environment;
41 std::string git_commit;
43 std::optional<sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S">> created_at;
Repository infrastructure and bitemporal operations.
Definition bitemporal_operations.hpp:31
Represents a database info in the database.
Definition database_info_entity.hpp:34