diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-22 21:33:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-22 21:33:28 +0000 |
commit | 29b8977a82ceb23adc851bdfc58b4dc434125580 (patch) | |
tree | 52c8eaa32ed6f68f9e1b32cf160e87ecb5e8f1d1 | |
parent | 86b9c40c88ec288f928c7fe9a4d768c1fc73bb68 (diff) | |
download | brdo-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.
-rw-r--r-- | database/database.mysql | 1 | ||||
-rw-r--r-- | database/database.pgsql | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/database/database.mysql b/database/database.mysql index 0c716b190..1e4e450a5 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -13,7 +13,6 @@ CREATE TABLE access ( type varchar(255) NOT NULL default '', status tinyint(2) NOT NULL default '0', PRIMARY KEY (aid), - UNIQUE KEY mask (mask) ) TYPE=MyISAM; -- 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) ); -- |