diff --git a/include/dbstructure.php b/include/dbstructure.php index 73ddedbe1..309b7e05a 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1213,4 +1213,15 @@ function db_definition() { ) ); $db["userd"] = array( - "fields" = \ No newline at end of file + "fields" => array( + "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), + "username" => array("type" => "char(255)", "not null" => "1"), + ), + "indexes" => array( + "PRIMARY" => array("id"), + "username" => array("username"), + ) + ); + + return($db); +}