diff options
author | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-07-20 01:53:54 +0000 |
---|---|---|
committer | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-07-20 01:53:54 +0000 |
commit | 902158671a56899be476d2ef25303be614f808ed (patch) | |
tree | 71b1420290d9f17b34299dee357b4cfd24afd767 | |
parent | 1873d67093bec728ce7851627786d06ab9d6d948 (diff) |
Fixed a problem with saving and loading nickcore access lists when using
MySQL and RDB
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2386 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | data/tables.sql | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/data/tables.sql b/data/tables.sql index 2d4889cb5..f93cd55f3 100644 --- a/data/tables.sql +++ b/data/tables.sql @@ -226,8 +226,7 @@ CREATE TABLE anope_ns_access ( display varchar(255) NOT NULL default '', access text NOT NULL, active tinyint(1) NOT NULL default '1', - PRIMARY KEY (na_id), - UNIQUE KEY display (display) + PRIMARY KEY (na_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- |