Change a column data type and nullability.

Namespace:  Mindscape.NHibernateModelDesigner.Migrations
Assembly:  Mindscape.NHibernateModelDesigner.Migrations (in Mindscape.NHibernateModelDesigner.Migrations.dll)
Version: 3.1.0.0 (3.1.0.0)

Syntax

C#
protected virtual void ChangeColumn(
	string tableName,
	string owner,
	string columnName,
	ModelDataType type,
	bool nullable,
	int size
)
Visual Basic (Declaration)
Protected Overridable Sub ChangeColumn ( _
	tableName As String, _
	owner As String, _
	columnName As String, _
	type As ModelDataType, _
	nullable As Boolean, _
	size As Integer _
)

Parameters

tableName
Type: System..::.String
The name of the table to alter the column on.
owner
Type: System..::.String
The owner of the table to alter the column on.
columnName
Type: System..::.String
The name of the column to alter.
type
Type: Mindscape.NHibernateModelDesigner.Migrations..::.ModelDataType
The type that the column should be.
nullable
Type: System..::.Boolean
If true, the column will be nullable, otherwise it will not be nullable.
size
Type: System..::.Int32
The size of the field (for string fields only).

See Also