20#ifndef ORES_DQ_REPOSITORY_CODING_SCHEME_AUTHORITY_TYPE_ENTITY_HPP
21#define ORES_DQ_REPOSITORY_CODING_SCHEME_AUTHORITY_TYPE_ENTITY_HPP
24#include "sqlgen/Timestamp.hpp"
25#include "sqlgen/PrimaryKey.hpp"
27namespace ores::dq::repository {
33 constexpr static const char* schema =
"metadata";
34 constexpr static const char* tablename =
"dq_coding_scheme_authority_types_tbl";
36 sqlgen::PrimaryKey<std::string> code;
39 std::string description;
40 std::string modified_by;
41 std::string change_commentary;
42 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_from =
"9999-12-31 23:59:59";
43 sqlgen::Timestamp<
"%Y-%m-%d %H:%M:%S"> valid_to =
"9999-12-31 23:59:59";
Represents a coding_scheme_authority_type in the database.
Definition coding_scheme_authority_type_entity.hpp:32