Naming of boolean column in database table
Posted
by Space Cracker
on Stack Overflow
See other posts from Stack Overflow
or by Space Cracker
Published on 2010-06-14T12:31:46Z
Indexed on
2010/06/15
5:02 UTC
Read the original article
Hit count: 201
I have 'Service' table and the following column description as below
- Is User Verification Required for service ?
- Is User's Email Activation Required for the service ?
- Is User's Mobile Activation required for the service ?
I Hesitate in naming these columns as below
IsVerificationRequired
IsEmailActivationRequired
IsMobileActivationRequired
or
RequireVerification
RequireEmailActivation
RequireMobileActivation
I can't determined which way is the best .So, Is one of the above suggested name is the best or is there other better ones ?
© Stack Overflow or respective owner