PDA

View Full Version : sys_group does not exist


nazgul_zulus
2nd July 2006, 17:00
Hello,

I was following http://www.mydnsconfig.org/documentation.htm while installing MyDNSConfig, but it occured that there is no sys_group table in database after that, and there was no task to create this table.
Maybe there are more missing tables, at the moment I have (sys_user, soa, rr)

Am I wrong, or is it manual incomplete..??

Whatever answer I would be glad if someone can send me how sys_group table looks like...:-)

till
2nd July 2006, 18:36
Here is the mysql comand to create the sys_group table:

CREATE TABLE sys_group (
groupid int(11) NOT NULL auto_increment,
name varchar(255) NOT NULL default '',
description text NOT NULL,
PRIMARY KEY (groupid)
) TYPE=MyISAM;