Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlColumnDeclaration Struct Reference

Represents a SQL column declaration. More...

#include <MigrationPlan.hpp>

Public Attributes

std::string name
 The name of the column.
 
SqlColumnTypeDefinition type
 The type of the column.
 
SqlPrimaryKeyType primaryKey { SqlPrimaryKeyType::NONE }
 The primary key type of the column.
 
std::optional< SqlForeignKeyReferenceDefinitionforeignKey {}
 The foreign key reference definition of the column.
 
bool required { false }
 Indicates if the column is required (non-nullable).
 
bool unique { false }
 Indicates if the column is unique.
 
bool index { false }
 Indicates if the column is indexed.
 

Detailed Description

Represents a SQL column declaration.

Definition at line 195 of file MigrationPlan.hpp.

Member Data Documentation

◆ name

std::string SqlColumnDeclaration::name

The name of the column.

Definition at line 198 of file MigrationPlan.hpp.

◆ type

SqlColumnTypeDefinition SqlColumnDeclaration::type

The type of the column.

Definition at line 201 of file MigrationPlan.hpp.

◆ primaryKey

SqlPrimaryKeyType SqlColumnDeclaration::primaryKey { SqlPrimaryKeyType::NONE }

The primary key type of the column.

Definition at line 204 of file MigrationPlan.hpp.

◆ foreignKey

std::optional<SqlForeignKeyReferenceDefinition> SqlColumnDeclaration::foreignKey {}

The foreign key reference definition of the column.

Definition at line 207 of file MigrationPlan.hpp.

◆ required

bool SqlColumnDeclaration::required { false }

Indicates if the column is required (non-nullable).

Definition at line 210 of file MigrationPlan.hpp.

◆ unique

bool SqlColumnDeclaration::unique { false }

Indicates if the column is unique.

Definition at line 213 of file MigrationPlan.hpp.

◆ index

bool SqlColumnDeclaration::index { false }

Indicates if the column is indexed.

Definition at line 216 of file MigrationPlan.hpp.


The documentation for this struct was generated from the following file: