From c12afe3f92448ea3a187faa1438b98c9c98cbd87 Mon Sep 17 00:00:00 2001 From: Denis Glushkov Date: Wed, 10 Apr 2024 18:27:52 +0500 Subject: [PATCH] fix autotest --- src/SchemaGrammar.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SchemaGrammar.php b/src/SchemaGrammar.php index 523df96..4f39ee2 100644 --- a/src/SchemaGrammar.php +++ b/src/SchemaGrammar.php @@ -64,6 +64,11 @@ protected function getColumns(Blueprint $blueprint): array return $columns; } + protected function typeTinyInteger(Fluent $column): string + { + return 'Int16'; + } + /** * Create the column definition for an integer type. *