Verwenden Sie das TRUNCATE
SQL-Befehl.
Für eine einzelne Tabelle lautet die Syntax wie folgt:
TRUNCATE TABLE table_name RESTART IDENTITY;
Für mehrere Tabellen:
TRUNCATE TABLE table_foo, table_bar RESTART IDENTITY;
Was es tut:
Details hier:TRUNCATE @ postgresql.org