From b6529f600a0fedd0f7bc09e7cc2da4ef5ba1ff61 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Fri, 7 Apr 2023 06:00:39 -0400 Subject: [PATCH] Improves the definition of the column builder. --- src/Column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Column.php b/src/Column.php index 62ec349..7e966fc 100644 --- a/src/Column.php +++ b/src/Column.php @@ -36,7 +36,7 @@ protected function buildUnsignedString(): string /** * Builds the full string for the column's schema. */ - public function asString(): string + public function buildString(): string { $format = match ($this->getTypeCategory()) { self::TYPE_CATEGORY_PK => '{type}{length}{check}{append}',