friendica/doc/database/db_tag.md

27 lines
1.2 KiB
Markdown
Raw Normal View History

Table tag
===========
2021-06-14 06:10:11 +00:00
tags and mentions
2021-06-14 08:53:37 +00:00
Fields
------
2022-04-24 00:20:06 +00:00
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------------------------------------------------------------------------- | ---------------- | ---- | --- | ------- | -------------- |
| id | | int unsigned | NO | PRI | NULL | auto_increment |
| name | | varchar(96) | NO | | | |
| url | | varbinary(383) | NO | | | |
2022-04-24 00:20:06 +00:00
| type | Type of the tag (Unknown, General Collection, Follower Collection or Account) | tinyint unsigned | YES | | NULL | |
2021-06-14 08:53:37 +00:00
Indexes
------------
2021-06-14 12:15:10 +00:00
| Name | Fields |
| ------------- | ----------------- |
| PRIMARY | id |
2021-06-14 08:53:37 +00:00
| type_name_url | UNIQUE, name, url |
2021-06-14 12:15:10 +00:00
| url | url |
2021-06-14 08:53:37 +00:00
Return to [database documentation](help/database)