Page MenuHomeWickedGov Phorge

patch-revtag-int-to-bigint-unsigned.json
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

patch-revtag-int-to-bigint-unsigned.json

{
"comment": "Convert integer columns in revtag table to unsigned bigint",
"before": {
"name": "revtag",
"comment": "Revision tags",
"columns": [
{
"name": "rt_type",
"type": "binary",
"options": {
"notnull": true,
"length": 60
}
},
{
"name": "rt_page",
"comment": "Link to page.page_id",
"type": "integer",
"options": {
"notnull": true
}
},
{
"name": "rt_revision",
"comment": "Link to revision.rev_id",
"type": "integer",
"options": {
"notnull": true
}
},
{
"name": "rt_value",
"type": "blob",
"options": {
"length": 65530,
"notnull": false
}
}
],
"indexes": [
{
"name": "rt_revision_type",
"comment": "Index for finding the tags on a given revision",
"columns": [
"rt_revision",
"rt_type"
],
"unique": false
}
],
"pk": [
"rt_type",
"rt_page",
"rt_revision"
]
},
"after": {
"name": "revtag",
"comment": "Revision tags",
"columns": [
{
"name": "rt_type",
"type": "binary",
"options": {
"notnull": true,
"length": 60
}
},
{
"name": "rt_page",
"comment": "Link to page.page_id",
"type": "bigint",
"options": {
"notnull": true,
"unsigned": true
}
},
{
"name": "rt_revision",
"comment": "Link to revision.rev_id",
"type": "bigint",
"options": {
"notnull": true,
"unsigned": true
}
},
{
"name": "rt_value",
"type": "blob",
"options": {
"length": 65530,
"notnull": false
}
}
],
"indexes": [
{
"name": "rt_revision_type",
"comment": "Index for finding the tags on a given revision",
"columns": [
"rt_revision",
"rt_type"
],
"unique": false
}
],
"pk": [
"rt_type",
"rt_page",
"rt_revision"
]
}
}

File Metadata

Mime Type
application/json
Expires
Tue, Aug 18, 15:59 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b9/5f/1b69a5584f875fc8c53fe289eb67
Default Alt Text
patch-revtag-int-to-bigint-unsigned.json (1 KB)

Event Timeline