From 941c0499331dd19b3d5cac9c77b94767074e3915 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 29 Apr 2014 13:19:44 +0200 Subject: [PATCH] The file "dbstructure.php" was corrupted. This is the right one. --- include/dbstructure.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 73ddedbe11..309b7e05af 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); +}