Lightweight 0.1.0
|
Holds the definition of a column in a SQL table as read from the database schema. More...
#include <SqlSchema.hpp>
Public Attributes | |
std::string | name = {} |
SqlColumnTypeDefinition | type = {} |
std::string | dialectDependantTypeString = {} |
bool | isNullable = true |
bool | isUnique = false |
size_t | size = 0 |
unsigned short | decimalDigits = 0 |
bool | isAutoIncrement = false |
bool | isPrimaryKey = false |
bool | isForeignKey = false |
std::optional< ForeignKeyConstraint > | foreignKeyConstraint {} |
std::string | defaultValue = {} |
Holds the definition of a column in a SQL table as read from the database schema.
Definition at line 88 of file SqlSchema.hpp.
std::string SqlSchema::Column::name = {} |
Definition at line 90 of file SqlSchema.hpp.
SqlColumnTypeDefinition SqlSchema::Column::type = {} |
Definition at line 91 of file SqlSchema.hpp.
std::string SqlSchema::Column::dialectDependantTypeString = {} |
Definition at line 92 of file SqlSchema.hpp.
bool SqlSchema::Column::isNullable = true |
Definition at line 93 of file SqlSchema.hpp.
bool SqlSchema::Column::isUnique = false |
Definition at line 94 of file SqlSchema.hpp.
size_t SqlSchema::Column::size = 0 |
Definition at line 95 of file SqlSchema.hpp.
unsigned short SqlSchema::Column::decimalDigits = 0 |
Definition at line 96 of file SqlSchema.hpp.
bool SqlSchema::Column::isAutoIncrement = false |
Definition at line 97 of file SqlSchema.hpp.
bool SqlSchema::Column::isPrimaryKey = false |
Definition at line 98 of file SqlSchema.hpp.
bool SqlSchema::Column::isForeignKey = false |
Definition at line 99 of file SqlSchema.hpp.
std::optional<ForeignKeyConstraint> SqlSchema::Column::foreignKeyConstraint {} |
Definition at line 100 of file SqlSchema.hpp.
std::string SqlSchema::Column::defaultValue = {} |
Definition at line 101 of file SqlSchema.hpp.