DROP SEQUENCE -- remove a sequence
DROP SEQUENCE name [, ...]
DROP SEQUENCE removes sequence number generators. To execute this command you must be a superuser or the owner of the sequence.
name
The name (optionally schema-qualified) of a sequence.
To remove the sequence, serial:
DROP SEQUENCE serial;
ALTER SEQUENCE, CREATE SEQUENCE