Add a column to an existing table.

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 AddColumn(
	string tableName,
	string owner,
	string columnName,
	string type,
	bool nullable
)
Visual Basic (Declaration)
Protected Overridable Sub AddColumn ( _
	tableName As String, _
	owner As String, _
	columnName As String, _
	type As String, _
	nullable As Boolean _
)

Parameters

tableName
Type: System..::.String
The name of the table to add the column to.
owner
Type: System..::.String
The owner of the table to add the column to.
columnName
Type: System..::.String
The name of the column to add.
type
Type: System..::.String
The native database typename of the column to add.
nullable
Type: System..::.Boolean
If true, the field will be nullable, otherwise it will not be nullable.

See Also