From 99959da55c50ffd3622940d05ac65645e3b5fa07 Mon Sep 17 00:00:00 2001 From: Martin Hutchinson Date: Mon, 9 Dec 2024 12:52:58 +0000 Subject: [PATCH] Use small int --- storage/mysql/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/mysql/schema.sql b/storage/mysql/schema.sql index d4f3df1a..389c82c4 100644 --- a/storage/mysql/schema.sql +++ b/storage/mysql/schema.sql @@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS `Subtree` ( CREATE TABLE IF NOT EXISTS `TiledLeaves` ( `tile_index` BIGINT UNSIGNED NOT NULL, -- size is the number of entries serialized into this leaf bundle. - `size` INT UNSIGNED NOT NULL, + `size` SMALLINT UNSIGNED NOT NULL, `data` LONGBLOB NOT NULL, PRIMARY KEY(`tile_index`) );