Tengo una tabla en PostgreSQL donde el esquema se ve así:
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
)
Ahora quiero hacer que el enlace permanente sea único en la tabla ALTERANDO la tabla. ¿Puede alguien ayudarme con esto?
TIA
create unique index on foo_table (permalink)