diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-04-12 18:52:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-04-12 18:52:47 +0000 |
commit | f33f9a5fcdb381c073501ba4c81aba3a75ce56e3 (patch) | |
tree | 195927049b20d5c3a1b3ddfc8a271b5a9780119d /database/database.pgsql | |
parent | bbb746b8148be858f52b236c9c2a4053350c7aad (diff) | |
download | brdo-f33f9a5fcdb381c073501ba4c81aba3a75ce56e3.tar.gz brdo-f33f9a5fcdb381c073501ba4c81aba3a75ce56e3.tar.bz2 |
- Patch #19965 by Robin Monks: fixed problem with duplicate block titles.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index a911049f0..92f5dc0b7 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -153,8 +153,7 @@ CREATE TABLE boxes ( info varchar(128) NOT NULL default '', format smallint NOT NULL default '0', PRIMARY KEY (bid), - UNIQUE (info), - UNIQUE (title) + UNIQUE (info) ); -- |