|
relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
|
Represents a composite foreign key constraint with multiple columns. More...
#include <relx/schema/foreign_key.hpp>
Public Member Functions | |
| composite_foreign_key () | |
| Default constructor. | |
| composite_foreign_key (reference_action on_delete, reference_action on_update) | |
| Constructor with custom actions. | |
| std::string | sql_definition () const |
| Get SQL definition for the composite FOREIGN KEY constraint. | |
Represents a composite foreign key constraint with multiple columns.
| LocalColumnPtrs | Pointers to the local columns |
| ReferencedColumnPtrs | Pointers to the referenced columns |
Definition at line 93 of file foreign_key.hpp.
|
inlineexplicit |
Default constructor.
Definition at line 96 of file foreign_key.hpp.
|
inline |
Constructor with custom actions.
Definition at line 102 of file foreign_key.hpp.
|
inline |
Get SQL definition for the composite FOREIGN KEY constraint.
Definition at line 107 of file foreign_key.hpp.