PostgreSQL doesn't have type in identity column.

Namespace:  NHibernate.Dialect
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overrides ReadOnly Property HasDataTypeInIdentityColumn As Boolean
C#
public override bool HasDataTypeInIdentityColumn { get; }
Visual C++
public:
virtual property bool HasDataTypeInIdentityColumn {
	bool get () override;
}
JavaScript
function get_hasDataTypeInIdentityColumn();

Remarks

To create an identity column it uses the SQL syntax CREATE TABLE tablename (colname SERIAL); or CREATE TABLE tablename (colname BIGSERIAL);

See Also