Menu

#31 tags,sql error

open
nobody
None
5
2006-03-24
2006-03-24
Anonymous
No

C:\htdocs\PhpMyLibrary\polerio\PhpMyLibrary\sql\tags.sql

replace the entry

CREATE TABLE `_tags` (
`tagno` varchar(255) NOT NULL,
`tagname` varchar(255) NOT NULL,
`tagdelims` text,
`taghelp` varchar(255) default NULL,
UNIQUE KEY `tagno` (`tagno`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

with

CREATE TABLE `_tags` (
`tagno` varchar(255) NOT NULL,
`tagname` varchar(255) NOT NULL,
`tagdelims` text,
`taghelp` varchar(255) default NULL,
UNIQUE KEY `tagno` (`tagno`)
) TYPE=MyISAM;

Discussion


Log in to post a comment.