PostgresqlColumn class

PostgreSQL Column.

Constructors

PostgresqlColumn({String? column, String? dataType, int? length, bool? nullable, int? ordinalPosition, int? precision, bool? primaryKey, int? scale})
PostgresqlColumn.fromJson(Map json_)

Properties

column ↔ String?
The column name.
getter/setter pair
dataType ↔ String?
The PostgreSQL data type.
getter/setter pair
hashCode → int
The hash code for this object.
no setterinherited
length ↔ int?
Column length.
getter/setter pair
nullable ↔ bool?
Whether or not the column can accept a null value.
getter/setter pair
ordinalPosition ↔ int?
The ordinal position of the column in the table.
getter/setter pair
precision ↔ int?
Column precision.
getter/setter pair
primaryKey ↔ bool?
Whether or not the column represents a primary key.
getter/setter pair
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
scale ↔ int?
Column scale.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, dynamic>
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited