Add a column to an existing table.
Namespace:
Mindscape.LightSpeed.MigrationsAssembly: Mindscape.LightSpeed.Migrations (in Mindscape.LightSpeed.Migrations.dll)
Version: 3.1.0.0 (4.0.0.0)
Syntax
C# |
---|
protected void AddColumn( string tableName, string columnName, ModelDataType type, bool nullable ) |
Visual Basic (Declaration) |
---|
Protected Sub AddColumn ( _ tableName As String, _ columnName As String, _ type As ModelDataType, _ nullable As Boolean _ ) |
Parameters
- tableName
- Type: System..::.String
The name of the table to add the column to.
- columnName
- Type: System..::.String
The name of the column to add.
- type
- Type: Mindscape.LightSpeed.Migrations..::.ModelDataType
The type of the column to add.
- nullable
- Type: System..::.Boolean
If true, the field will be nullable, otherwise it will not be nullable.