I have a column on my mysql table that is currently VARCHAR, it is named logcount.
Upon user creation the logcount is set to nothing, and once the account is verified it sets itself to 0. If a user tries to login when it is empty it urges them to verify there account. Once verified it is set as 0, and everytime the user logs in it adds 1 to it.
The reason it is set to VARCHAR is because if I set it to INT, mysql automatically sets it to 0 and will not let me have a blank value for it. Is there any setting that I can make this possible. And will having a column set to VARCHAR that will only ever contain an INT be a problem?