diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-04-03 08:56:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-04-03 08:56:48 +0000 |
commit | 6e1431705e0dba07d87269c4c026252872663185 (patch) | |
tree | 63593475be32117f2e7a511bc4156bcb5a67c4eb /database/database.pgsql | |
parent | 8adb531bd16e544991fbbb74c90003df4c5bfcf7 (diff) | |
download | brdo-6e1431705e0dba07d87269c4c026252872663185.tar.gz brdo-6e1431705e0dba07d87269c4c026252872663185.tar.bz2 |
- 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.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 1 |
1 files changed, 0 insertions, 1 deletions
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 |