From 5bb384ddb3b914a5dfbd85860fed1153998f3f28 Mon Sep 17 00:00:00 2001 From: Alec Smecher Date: Thu, 27 Aug 2020 12:38:47 -0700 Subject: [PATCH] pkp/pkp-lib#2493 Use smallInteger or boolean instead of tinyInt (https://github.com/laravel/framework/issues/8840) --- UsageStatsMigration.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UsageStatsMigration.inc.php b/UsageStatsMigration.inc.php index 3bc3ad9..1008e71 100644 --- a/UsageStatsMigration.inc.php +++ b/UsageStatsMigration.inc.php @@ -33,7 +33,7 @@ public function up() { $table->string('region', 2)->nullable(); $table->string('city', 255)->nullable(); $table->string('load_id', 255); - $table->tinyInteger('file_type')->nullable(); + $table->smallInteger('file_type')->nullable(); }); } }