Enhanced database comment
This commit is contained in:
parent
f7142f0144
commit
ac08bc1362
|
@ -232,7 +232,7 @@ CREATE TABLE IF NOT EXISTS `tag` (
|
||||||
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
`id` int unsigned NOT NULL auto_increment COMMENT '',
|
||||||
`name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
|
`name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`url` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
`url` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
|
||||||
`type` tinyint unsigned COMMENT 'Type of the tag (Unknown, Collection or Account)',
|
`type` tinyint unsigned COMMENT 'Type of the tag (Unknown, General Collection, Follower Collection or Account)',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
UNIQUE INDEX `type_name_url` (`name`,`url`),
|
UNIQUE INDEX `type_name_url` (`name`,`url`),
|
||||||
INDEX `url` (`url`)
|
INDEX `url` (`url`)
|
||||||
|
|
|
@ -6,12 +6,12 @@ tags and mentions
|
||||||
Fields
|
Fields
|
||||||
------
|
------
|
||||||
|
|
||||||
| Field | Description | Type | Null | Key | Default | Extra |
|
| Field | Description | Type | Null | Key | Default | Extra |
|
||||||
| ----- | ------------------------------------------------ | ---------------- | ---- | --- | ------- | -------------- |
|
| ----- | ----------------------------------------------------------------------------- | ---------------- | ---- | --- | ------- | -------------- |
|
||||||
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
| id | | int unsigned | NO | PRI | NULL | auto_increment |
|
||||||
| name | | varchar(96) | NO | | | |
|
| name | | varchar(96) | NO | | | |
|
||||||
| url | | varbinary(255) | NO | | | |
|
| url | | varbinary(255) | NO | | | |
|
||||||
| type | Type of the tag (Unknown, Collection or Account) | tinyint unsigned | YES | | NULL | |
|
| type | Type of the tag (Unknown, General Collection, Follower Collection or Account) | tinyint unsigned | YES | | NULL | |
|
||||||
|
|
||||||
Indexes
|
Indexes
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -290,7 +290,7 @@ return [
|
||||||
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
|
||||||
"name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
|
"name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
"url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
|
||||||
"type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, Collection or Account)"],
|
"type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, General Collection, Follower Collection or Account)"],
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
|
Loading…
Reference in a new issue