|
Lightweight 0.20251202.0
|
Represents a SQL INSERT data plan for migrations. More...
#include <MigrationPlan.hpp>
Public Attributes | |
| std::string | schemaName |
| The schema name of the table to insert into. | |
| std::string | tableName |
| The name of the table to insert into. | |
| std::vector< std::pair< std::string, SqlVariant > > | columns |
| The columns and their values to insert. | |
Represents a SQL INSERT data plan for migrations.
This structure represents an INSERT statement for a migration plan.
Definition at line 419 of file MigrationPlan.hpp.
| std::string Lightweight::SqlInsertDataPlan::schemaName |
The schema name of the table to insert into.
Definition at line 422 of file MigrationPlan.hpp.
| std::string Lightweight::SqlInsertDataPlan::tableName |
The name of the table to insert into.
Definition at line 425 of file MigrationPlan.hpp.
| std::vector<std::pair<std::string, SqlVariant> > Lightweight::SqlInsertDataPlan::columns |
The columns and their values to insert.
Definition at line 428 of file MigrationPlan.hpp.