in my database i save million of rows per day in a table and i delete all the rows after 2 weeks because i don't need them anymore.
i was wondering if it's good or bad to add a primary key id auto increment or i will hit too high numbers.
the table contains only inserts anytime an user issues a command with columns like the id of the user, the timestamp and the command. so to add a primary key i guess i necessarily need to add an auto-increment that will soon become very very high.
should i avoid to add it considering the amount of inserts?