in reply to Is this a simple, robust, and maintainable design?
I have some thoughts and questions about ways to improve the design.
A message can have multiple independent states, such as being scanned and checked, or verified but broken, or complete but not spell checked. Is it better to keep these states in separate columns?
Perhaps columns like scan_status, check_status, and verify_status with values like PENDING, COMPLETE, NA, BROKEN. These could also be on a separate table like message_status.
Would this be a significant improvement? Does it improve simplicity, robustness, and maintainability?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Is this a simple, robust, and maintainable design?
by GrandFather (Saint) on Feb 03, 2011 at 20:22 UTC |