I have a database in Postgres
that is already running a week and the amount of data entered is 3788, this number reflects the id
of my table, plus I am informed that this amount is similinar per week.
I create the id
in the following way:
id integer NOT NULL DEFAULT nextval('memoria_id_seq'),
So, what worries me and I wanted to know is:
What is the limit of this id?
Should I change the database to extend this id?
Or maybe I just have to change the type of data? What would this type of data be?