The file "dbstructure.php" was corrupted. This is the right one.

This commit is contained in:
Michael Vogel 2014-04-29 13:19:44 +02:00
parent c5825a0c20
commit 941c049933
1 changed files with 12 additions and 1 deletions

View File

@ -1213,4 +1213,15 @@ function db_definition() {
) )
); );
$db["userd"] = array( $db["userd"] = array(
"fields" = "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);
}