DropIndexOperation
Drop an index.
public sealed record DropIndexOperation : SchemaOperation, IEquatable<SchemaOperation>, IEquatable<DropIndexOperation>
Constructors
DropIndexOperation
public DropIndexOperation(string Schema, string TableName, string IndexName)
Drop an index.
| Parameter | Type | Description |
|---|---|---|
Schema |
String |
|
TableName |
String |
|
IndexName |
String |
Properties
Schema
public string Schema { get; init; }
TableName
public string TableName { get; init; }
IndexName
public string IndexName { get; init; }