From 807f382e23689d2fb4fa5e0db7ab849bd6357775 Mon Sep 17 00:00:00 2001 From: Denis Glushkov Date: Wed, 10 Apr 2024 18:24:08 +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 11747d4..523df96 100644 --- a/src/SchemaGrammar.php +++ b/src/SchemaGrammar.php @@ -119,6 +119,11 @@ protected function typeText(Fluent $column): string return 'String'; } + protected function typeMediumText(Fluent $column): string + { + return 'String'; + } + /** * Create the column definition for a long text type. *