From 902158671a56899be476d2ef25303be614f808ed Mon Sep 17 00:00:00 2001 From: adam- Date: Mon, 20 Jul 2009 01:53:54 +0000 Subject: [PATCH] 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 --- data/tables.sql | 3 +-- 1 file changed, 1 insertion(+), 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; -- --------------------------------------------------------