users communicate that they receive error messages when they add a new customer without specifying the address when running the following: create table customer( custid int not null, custname varchar(200) not null, custaddress varchar(200) not null ); what would change the table definition to mitigate the issue?