First of all, don't do this on your production database.
The right way (tm) is to use transactions for what they're worth. In postgres you can even nest them by using savepoints (which you can do a rollback to).
test=# create table foo (foo_id serial primary key, bar varchar);
NOTICE: CREATE TABLE will create implicit sequence "foo_foo_id_seq" for serial column "foo.foo_id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "foo_pkey" for table "foo"
CREATE TABLE
test=# begin; insert into foo (bar) values ('test');
BEGIN
INSERT 0 1
test=# savepoint sp1;
SAVEPOINT
test=# insert into foo (foo_id, bar) values (1, 'test');
ERROR: duplicate key value violates unique constraint "foo_pkey"
test=# rollback to sp1;
ROLLBACK
test=# select * from foo;
foo_id | bar
--------+------
1 | test
test=# -- note that you're still in a transaction
If this doesn't suit (due to software constraints or other reasons) you could always keep several dumps of your database in files which you can easily restore; and/or have a script that automatically dumps your production database into a local test database.
Also, always remember to keep your schema changes in version control (or a bare minimum some .sql files); makes it easy to update your production database after you've developed something new using your test database.
PITR is primarily meant for hot standby / backup purposes.