good_db.sql

text/plain

\connect - postgres
DROP TABLE "foo";
CREATE TABLE "foo" (
	"bar" point,
	"text" character varying,
	"bar2" point
);
INSERT INTO "foo" ("bar","text","bar2") VALUES ('(0,0)','hello1','(0,0)');