notNull method

ColumnDefinition notNull()

Set column as NOT NULL

Implementation

ColumnDefinition notNull() {
  _nullable = false;
  return this;
}