Recently I made an error in not making CAMPAIGN_NO unique and it kind of merged accounts together (in a weird way). I wonder if this could be prevented by one of the following:
- Error in loading if an existing same
CAMPAIGN_NO already exists (easy, non-invasive).
- Drop
CAMPAIGN_NO from manifests and require that CAMPAIGN_NAME is unique (more invasive but seems more intuitive from user perspective).
Btw for CAMPAIGN_NAME I was thinking of allowing _- to make them more readable. Possibly even (space) because that's allowed in URLs and the redirects support it.
Recently I made an error in not making
CAMPAIGN_NOunique and it kind of merged accounts together (in a weird way). I wonder if this could be prevented by one of the following:CAMPAIGN_NOalready exists (easy, non-invasive).CAMPAIGN_NOfrom manifests and require thatCAMPAIGN_NAMEis unique (more invasive but seems more intuitive from user perspective).Btw for
CAMPAIGN_NAMEI was thinking of allowing_-to make them more readable. Possibly even(space) because that's allowed in URLs and the redirects support it.