summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2021-12-26 01:11:28 +0100
committerUmherirrender <umherirrender_de.wp@web.de>2021-12-28 11:16:03 +0000
commit57beb76a80d6b554f0a960a31137a19278c3e907 (patch)
tree69d1b79513dc747cdf1d8a462cf4b012e751be68
parent3d1dd5246beb7240fb2ec0bffe3207f90a7348c8 (diff)
abstract schema: Remove unsigned: false from integer types
unsigned false is the default and not needed to be specified in the definition. Change-Id: Ib2df05d2f46e06b101d27d8684c6210053da0170
-rw-r--r--maintenance/tables.json20
1 files changed, 10 insertions, 10 deletions
diff --git a/maintenance/tables.json b/maintenance/tables.json
index 97b6fa490876..eb041340fcc1 100644
--- a/maintenance/tables.json
+++ b/maintenance/tables.json
@@ -711,17 +711,17 @@
{
"name": "cat_pages",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "cat_subcats",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "cat_files",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
}
],
"indexes": [
@@ -809,7 +809,7 @@
"name": "ir_ipb_id",
"comment": "The ipb_id from ipblocks",
"type": "integer",
- "options": { "unsigned": false, "notnull": true }
+ "options": { "notnull": true }
},
{
"name": "ir_type",
@@ -821,7 +821,7 @@
"name": "ir_value",
"comment": "The restriction id that corresponds to the type. Typically a Page ID or a Namespace ID.",
"type": "integer",
- "options": { "unsigned": false, "notnull": true }
+ "options": { "notnull": true }
}
],
"indexes": [
@@ -853,7 +853,7 @@
{
"name": "qc_namespace",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "qc_title",
@@ -885,7 +885,7 @@
{
"name": "qcc_namespace",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "qcc_title",
@@ -895,7 +895,7 @@
{
"name": "qcc_namespacetwo",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "qcc_titletwo",
@@ -1034,7 +1034,7 @@
{
"name": "wl_namespace",
"type": "integer",
- "options": { "notnull": true, "unsigned": false, "default": 0 }
+ "options": { "notnull": true, "default": 0 }
},
{
"name": "wl_title",
@@ -1410,7 +1410,7 @@
{
"name": "pp_page",
"type": "integer",
- "options": { "unsigned": false, "notnull": true }
+ "options": { "notnull": true }
},
{
"name": "pp_propname",