From 6e1431705e0dba07d87269c4c026252872663185 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 3 Apr 2005 08:56:48 +0000 Subject: - Patch #19768 by danielc: line 593 in version 1.109 of database.pgsql is problematic. The line creates a unique index for sid. But, sid is already a primary key so doesn't need a unique index on it. Let alone, the syntax is wrong due to wrapping the table name in {}'s. This patch removes the line. --- database/database.pgsql | 1 - 1 file changed, 1 deletion(-) (limited to 'database/database.pgsql') diff --git a/database/database.pgsql b/database/database.pgsql index 817f08ea0..700338608 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -590,7 +590,6 @@ CREATE TABLE sessions ( session text, PRIMARY KEY (sid) ); -ALTER TABLE {sessions} ADD UNIQUE(sid); -- -- Table structure for sequences -- cgit v1.2.3