Index: /trunk/include/oninstall.php
===================================================================
--- /trunk/include/oninstall.php	(revision 79)
+++ /trunk/include/oninstall.php	(revision 80)
@@ -135,5 +135,6 @@
 		)$charset_collate;";
 	dbDelta($views_queries);
-		
+	$sql = "INSERT INTO $group_role (groupid, role) VALUES (1, 'administrator')";
+	$wpdb->query($sql);
 	// make templates
 //	include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ;
Index: /trunk/include/onupdate.php
===================================================================
--- /trunk/include/onupdate.php	(revision 79)
+++ /trunk/include/onupdate.php	(revision 80)
@@ -126,4 +126,7 @@
 			)$charset_collate;";
 		dbDelta($views_queries);
+		$sql = "INSERT INTO $group_role (groupid, role) VALUES (1, 'administrator')";
+		$wpdb->query($sql);
+
 	}
 	
