summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-09-22 21:33:28 +0000
committerDries Buytaert <dries@buytaert.net>2004-09-22 21:33:28 +0000
commit29b8977a82ceb23adc851bdfc58b4dc434125580 (patch)
tree52c8eaa32ed6f68f9e1b32cf160e87ecb5e8f1d1 /database/database.pgsql
parent86b9c40c88ec288f928c7fe9a4d768c1fc73bb68 (diff)
downloadbrdo-29b8977a82ceb23adc851bdfc58b4dc434125580.tar.gz
brdo-29b8977a82ceb23adc851bdfc58b4dc434125580.tar.bz2
- Bugfix: the access rule mask does not have to be unique. It should be possible to use a particular mask for both e-mail and username rules. This also avoids an SQL query error. Fixes bug report #10551.
Diffstat (limited to 'database/database.pgsql')
-rw-r--r--database/database.pgsql1
1 files changed, 0 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index 21a8408a6..43bfdc933 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -11,7 +11,6 @@ CREATE TABLE access (
type varchar(255) NOT NULL default '',
status smallint NOT NULL default '0',
PRIMARY KEY (aid),
- UNIQUE (mask)
);
--