]> git.mxchange.org Git - friendica.git/blobdiff - include/dbstructure.php
The CSS code for shared messages is moved from "vier" to the global.css, so that...
[friendica.git] / include / dbstructure.php
index 73ddedbe114a7334da3ebe585e47f20c12ff9594..309b7e05aff42064146edaa7eb812e4ee02fb845 100644 (file)
@@ -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);
+}