I would like to create a download counter for my files. Here are my current table fields:
download_counter table
_______________________
ID - int(6) - AutoInc,
Product - varchar(128),
Version - varchar(128),
Date - date,
IP's - LONGTEXT
I am wondering if I should use my current table or should I use a more dynamic and flexible table, like this:
ID - int(11) - AutoInc,
Product - varchar(128),
Version - varchar(128),
Date - date,
IP - varchar(45)