Interface IAlterExpressionRoot
The root expression interface for the alterations
Namespace: FluentMigrator.Builders.Alter
Assembly: FluentMigrator.Abstractions.dll
Syntax
public interface IAlterExpressionRoot
Methods
| Edit this page View SourceColumn(string)
Alter the column for a given table
Declaration
IAlterColumnOnTableSyntax Column(string columnName)
Parameters
Type | Name | Description |
---|---|---|
string | columnName | The column name |
Returns
Type | Description |
---|---|
IAlterColumnOnTableSyntax | The interface to specify the table |
Table(string)
Alter the table or its columns/options
Declaration
IAlterTableAddColumnOrAlterColumnOrSchemaOrDescriptionSyntax Table(string tableName)
Parameters
Type | Name | Description |
---|---|---|
string | tableName | The table name |
Returns
Type | Description |
---|---|
IAlterTableAddColumnOrAlterColumnOrSchemaOrDescriptionSyntax | The interface for the modifications |