AddColumn<T> class

Implemented types

Constructors

AddColumn(CreateColumn<T> column)

Properties

column CreateColumn<T>
final
hashCode int
The hash code for this object.
no setterinherited
name String
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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

Static Methods

bool(String name, {bool isNullable = false, String? uniqueGroup}) AddColumn<bool>
datetime(String name, {bool isNullable = false, String? uniqueGroup}) AddColumn<DateTime>
double(String name, {bool isNullable = false, bool primary = false, String? foreignTable, String? foreignCol, String? uniqueGroup}) AddColumn<double>
int(String name, {bool isNullable = false, bool autoIncrement = false, bool primary = false, String? foreignTable, String? foreignCol, String? uniqueGroup}) AddColumn<int>
string(String name, {bool isNullable = false, int length = 20, bool primary = false, String? foreignTable, String? foreignCol, String? uniqueGroup}) AddColumn<String>