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...:-)
Posts: 31,872
Thanks: 689
Thanked 4,185 Times in 3,202 Posts
Here is the mysql comand to create the sys_group table:
Quote:
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;
Recent comments
2 days 26 min ago
2 days 9 hours ago
2 days 12 hours ago
2 days 13 hours ago
2 days 14 hours ago
2 days 16 hours ago
2 days 17 hours ago
2 days 19 hours ago
3 days 11 hours ago
3 days 11 hours ago