X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_user.md;h=611fb76b05f4f52c32cc3c14d8d354fe95646772;hb=3e1e3c8b3e317e47abdd63284109da1774e66bdf;hp=8cc762cc225f089e86df33142c37d11ba08d0339;hpb=2cd0c1d30d237806e9c3853aa0645f786e31855c;p=friendica.git diff --git a/doc/database/db_user.md b/doc/database/db_user.md index 8cc762cc22..611fb76b05 100644 --- a/doc/database/db_user.md +++ b/doc/database/db_user.md @@ -3,6 +3,9 @@ Table user The local users +Fields +------ + | Field | Description | Type | Null | Key | Default | Extra | | ------------------------ | --------------------------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- | | uid | sequential ID | mediumint unsigned | NO | PRI | NULL | auto_increment | @@ -51,4 +54,22 @@ The local users | deny_gid | default permission for this user | mediumtext | YES | | NULL | | | openidserver | | text | YES | | NULL | | +Indexes +------------ + +| Name | Fields | +| ---------- | ------------ | +| PRIMARY | uid | +| nickname | nickname(32) | +| parent-uid | parent-uid | +| guid | guid | +| email | email(64) | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| parent-uid | [user](help/database/db_user) | uid | + Return to [database documentation](help/database)