Before you mark this a duplicate. I found this answer on another thread and having difficulties making it work.
From psql I see my table:
\d people
Table:
Column | Type | Modifiers
---------------+----------------------------------+-----------------------------------------------------------------------
id | integer | not null default nextval('people_id_seq'::regclass)
Code I tried which seems to do nothing...
ALTER SEQUENCE people_id_seq RESTART 1000
How do I make the primary key start from 1000?