Page MenuHomeWickedGov Phorge

patch-translate_tmt-unique-to-pk.json
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

patch-translate_tmt-unique-to-pk.json

{
"comment": "Convert unique index to primary key (T312260)",
"before": {
"name": "translate_tmt",
"comment": "Stored translations",
"columns": [
{
"name": "tmt_sid",
"type": "integer",
"options": {
"unsigned": true,
"notnull": true
}
},
{
"name": "tmt_lang",
"comment": "Language code",
"type": "binary",
"options": {
"notnull": true,
"length": 20
}
},
{
"name": "tmt_text",
"comment": "The actual text",
"type": "blob",
"options": {
"length": 16777215,
"notnull": true
}
}
],
"pk": [],
"indexes": [
{
"name": "tms_sid_lang",
"columns": [
"tmt_sid",
"tmt_lang"
],
"unique": true
}
]
},
"after": {
"name": "translate_tmt",
"comment": "Stored translations",
"columns": [
{
"name": "tmt_sid",
"type": "integer",
"options": {
"unsigned": true,
"notnull": true
}
},
{
"name": "tmt_lang",
"comment": "Language code",
"type": "binary",
"options": {
"notnull": true,
"length": 20
}
},
{
"name": "tmt_text",
"comment": "The actual text",
"type": "blob",
"options": {
"length": 16777215,
"notnull": true
}
}
],
"pk": [
"tmt_sid",
"tmt_lang"
],
"indexes": []
}
}

File Metadata

Mime Type
application/json
Expires
Tue, Aug 18, 15:10 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
87/c9/827114d5c711ce5253a15584ca6f
Default Alt Text
patch-translate_tmt-unique-to-pk.json (1 KB)

Event Timeline