friendica/doc/database/db_search.md

32 lines
808 B
Markdown
Raw Normal View History

2015-12-28 02:50:25 +01:00
Table search
===========
2015-12-28 02:50:25 +01:00
2021-06-14 08:10:11 +02: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 |
| uid | User id | mediumint unsigned | NO | | 0 | |
| term | | varchar(255) | NO | | | |
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Indexes
------------
| Name | Fields |
2021-06-14 10:54:57 +02:00
|------|--------|
2021-06-14 10:53:37 +02:00
| PRIMARY | id |
| uid_term | uid, term(64) |
| term | term(64) |
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)