The file "dbstructure.php" was corrupted. This is the right one.
This commit is contained in:
parent
c5825a0c20
commit
941c049933
1 changed files with 12 additions and 1 deletions
|
@ -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);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue