I just discovered NOT NULL does not make a field required.
When creating a mysql table, how do I create a field that cannot contain null or blank (must have somethin
You can set default value for that field: City varchar(40) DEFAULT 'Sandnes'