From 3b1a2ed4dfe939f19f3bdf314e4442ada4d8fa2c Mon Sep 17 00:00:00 2001 From: Bennett Treptow Date: Tue, 13 Apr 2021 13:12:30 -0500 Subject: [PATCH] Update to include new tinyText() method (#6983) See PR [#36949](https://github.com/laravel/framework/pull/36949) --- migrations.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/migrations.md b/migrations.md index 79209c87e3..3cebe159ae 100644 --- a/migrations.md +++ b/migrations.md @@ -362,6 +362,7 @@ The schema builder blueprint offers a variety of methods that correspond to the [timestamps](#column-method-timestamps) [tinyIncrements](#column-method-tinyIncrements) [tinyInteger](#column-method-tinyInteger) +[tinyText](#column-method-tinyText) [unsignedBigInteger](#column-method-unsignedBigInteger) [unsignedDecimal](#column-method-unsignedDecimal) [unsignedInteger](#column-method-unsignedInteger) @@ -738,6 +739,13 @@ The `tinyIncrements` method creates an auto-incrementing `UNSIGNED TINYINT` equi The `tinyInteger` method creates a `TINYINT` equivalent column: $table->tinyInteger('votes'); + + +#### `tinyText()` {#collection-method} + +The `tinyText` method creates a `TINYTEXT` equivalent column: + + $table->tinyText('notes'); #### `unsignedBigInteger()` {#collection-method}