query("CREATE TABLE IF NOT EXISTS {custom_menus} ( `id` int(9) NOT NULL auto_increment, `title` varchar(255) default NULL, `url` text default NULL, `parent_id` int(9) NOT NULL default 0, `order_by` int(9) NOT NULL default 0, PRIMARY KEY (`id`), UNIQUE KEY(`id`)) DEFAULT CHARSET=utf8;"); // Set the module version number. module::set_version("custom_menus", 1); } }