Should I use (create) a column for every new state? Or one field with a bunch of comma separated states (alternatively a json obj)? Any suggestions welcome.
UPDATE
First let me day thanks for the answers. I just want to clear up, what options I see:
- Put a column for every state in the user row (initial plan) / Can get messy with lots of states (in the future)
- Put one column with json/xml data in the user row / Easy to maintain (no db change required), but doesn't feel right
- Have a dedicated states table (thx lhiles)/ Sounds cool, how would this table look like?
I'm looking for pros/cons of the different implementations. Again: Thanks!