diff --git a/db/schema.sql b/db/schema.sql index e666d5f..451453b 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -630,8 +630,9 @@ DROP TABLE IF EXISTS `pmgr_customers`; CREATE TABLE `pmgr_customers` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, - -- If NULL, rely on the contact info exclusively - `name` VARCHAR(80) DEFAULT NULL, + -- Customer name may be the same as the primary contact + -- or it may entirely independent of that person. + `name` VARCHAR(80) NOT NULL, -- Primary Contact... every customer must have one -- (and presumably, most customers will _be_ one).