1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 23:33:12 +02:00

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
This commit is contained in:
adam-
2009-07-20 01:53:54 +00:00
parent 1873d67093
commit 902158671a
+1 -2
View File
@@ -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;
-- --------------------------------------------------------