|
Lightweight 0.20260303.0
|
Represents a SQL DELETE data plan for migrations. More...
#include <MigrationPlan.hpp>
Public Attributes | |
| std::string | schemaName |
| The schema name of the table to delete from. | |
| std::string | tableName |
| The name of the table to delete from. | |
| std::string | whereColumn |
| The column name for the WHERE clause. | |
| std::string | whereOp |
| The comparison operator for the WHERE clause (e.g., "=", "<>", etc.). | |
| SqlVariant | whereValue |
| The value for the WHERE clause. | |
Represents a SQL DELETE data plan for migrations.
This structure represents a DELETE statement for a migration plan.
Definition at line 467 of file MigrationPlan.hpp.
| std::string Lightweight::SqlDeleteDataPlan::schemaName |
The schema name of the table to delete from.
Definition at line 470 of file MigrationPlan.hpp.
| std::string Lightweight::SqlDeleteDataPlan::tableName |
The name of the table to delete from.
Definition at line 473 of file MigrationPlan.hpp.
| std::string Lightweight::SqlDeleteDataPlan::whereColumn |
The column name for the WHERE clause.
Definition at line 476 of file MigrationPlan.hpp.
| std::string Lightweight::SqlDeleteDataPlan::whereOp |
The comparison operator for the WHERE clause (e.g., "=", "<>", etc.).
Definition at line 479 of file MigrationPlan.hpp.
| SqlVariant Lightweight::SqlDeleteDataPlan::whereValue |
The value for the WHERE clause.
Definition at line 482 of file MigrationPlan.hpp.