C# Class Framework.Migrator.Fluent.AddColumn

Adds new column to existing table.
Inheritance: Column
Datei anzeigen Open project: coreframework/Core-Framework

Public Methods

Method Description
AddColumn ( DbType columnType, String columnName, String tableName ) : System

Initializes a new instance of the AddColumn class.

AddColumn ( String columnName, String tableColumnName ) : System

Initializes a new instance of the AddColumn class.

Migrate ( ITransformationProvider database ) : void

Adds new column to existing table.

Method Details

AddColumn() public method

Initializes a new instance of the AddColumn class.
public AddColumn ( DbType columnType, String columnName, String tableName ) : System
columnType DbType Type of the column.
columnName String Name of the column.
tableName String Name of the table.
return System

AddColumn() public method

Initializes a new instance of the AddColumn class.
public AddColumn ( String columnName, String tableColumnName ) : System
columnName String Name of the column.
tableColumnName String Name of the table.
return System

Migrate() public method

Adds new column to existing table.
public Migrate ( ITransformationProvider database ) : void
database ITransformationProvider The database.
return void