mediawiki-extensions-OATHAuth/sql/tables.json
Reedy de936aef6a Convert OATHAuth to abstract schema
Bug: T268564
Change-Id: I251fac0e1939cc84e7eab3e7514e07c81b2b0f1e
2022-02-18 10:36:56 +00:00

28 lines
479 B
JSON

[
{
"name": "oathauth_users",
"columns": [
{
"name": "id",
"comment": "User ID",
"type": "integer",
"options": { "notnull": true }
},
{
"name": "module",
"comment": "Module user has selected",
"type": "string",
"options": { "notnull": true, "length": 255 }
},
{
"name": "data",
"comment": "Data",
"type": "blob",
"options": { "length": 65530, "notnull": false }
}
],
"indexes": [],
"pk": [ "id" ]
}
]