notNull method
Add NOT NULL constraint
Makes the column required (cannot contain NULL values).
Implementation
SchemaUtils notNull() {
_constraints.add("NOT NULL");
return this;
}
Add NOT NULL constraint
Makes the column required (cannot contain NULL values).
SchemaUtils notNull() {
_constraints.add("NOT NULL");
return this;
}