friendica/doc/database/db_register.md

35 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2015-12-28 02:50:25 +01:00
Table register
===========
2021-06-14 08:10:11 +02:00
registrations requiring admin approval
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Fields
------
2021-06-14 08:10:11 +02:00
| Field | Description | Type | Null | Key | Default | Extra |
| -------- | ------------- | ------------------ | ---- | --- | ------------------- | -------------- |
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
| hash | | varbinary(255) | NO | | | |
2021-06-14 08:10:11 +02:00
| created | | datetime | NO | | 0001-01-01 00:00:00 | |
| uid | User id | mediumint unsigned | NO | | 0 | |
| password | | varchar(255) | NO | | | |
| language | | varchar(16) | NO | | | |
| note | | text | YES | | NULL | |
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Indexes
------------
2021-06-14 14:15:10 +02:00
| Name | Fields |
| ------- | ------ |
| PRIMARY | id |
| uid | uid |
2021-06-14 10:53:37 +02:00
Foreign Keys
------------
| Field | Target Table | Target Field |
|-------|--------------|--------------|
| uid | [user](help/database/db_user) | uid |
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)