J'ai une table dans PostgreSQL où le schéma ressemble à ceci:
CREATE TABLE "foo_table" (
"id" serial NOT NULL PRIMARY KEY,
"permalink" varchar(200) NOT NULL,
"text" varchar(512) NOT NULL,
"timestamp" timestamp with time zone NOT NULL
)
Maintenant, je veux rendre le permalien unique sur la table en ALTER-IN la table. Quelqu'un peut-il m'aider avec ça?
TIA
create unique index on foo_table (permalink)