I found a software that make postgres dump...
That's the sql generated:
CREATE TABLE "amici" (
"id" INTEGER NOT NULL,
"versione" CHAR(3) NOT NULL,
"titolo" VARCHAR(50) DEFAULT '',
"testo" TEXT DEFAULT '',
UNIQUE("id", "versione"

) WITH OIDS;
-----
Belowe it's the sscript generated from pg_dump
-----
CREATE TABLE "amici" (
"id" integer NOT NULL,
"versione" character(3) NOT NULL,
"titolo" character varying(50) DEFAULT '',
"testo" text DEFAULT ''
);
------
Which paramter i have to use with pg_dump to have the same result obteined with the software??
I want have a script with a type and sql syntax like in the first exaple... so my porting on MySql will be easyer...