Skip to content

Commit

Permalink
Update to include new tinyText() method (#6983)
Browse files Browse the repository at this point in the history
See PR [#36949](laravel/framework#36949)
  • Loading branch information
bennett-treptow committed Apr 13, 2021
1 parent 5cd9181 commit 3b1a2ed
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions migrations.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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');

<a name="column-method-tinyText"></a>
#### `tinyText()` {#collection-method}

The `tinyText` method creates a `TINYTEXT` equivalent column:

$table->tinyText('notes');

<a name="column-method-unsignedBigInteger"></a>
#### `unsignedBigInteger()` {#collection-method}
Expand Down

0 comments on commit 3b1a2ed

Please sign in to comment.