Skip to content

Commit 4bba113

Browse files
committed
Correct typing for startedAs and virtualAs database column definitions
1 parent 978ee88 commit 4bba113

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Schema/ColumnDefinition.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
* @method $this fulltext(bool|string $indexName = null) Add a fulltext index
2525
* @method $this spatialIndex(bool|string $indexName = null) Add a spatial index
2626
* @method $this startingValue(int $startingValue) Set the starting value of an auto-incrementing field (MySQL/PostgreSQL)
27-
* @method $this storedAs(string $expression) Create a stored generated column (MySQL/PostgreSQL/SQLite)
27+
* @method $this storedAs(string|\Illuminate\Database\Query\Expression $expression) Create a stored generated column (MySQL/PostgreSQL/SQLite)
2828
* @method $this type(string $type) Specify a type for the column
2929
* @method $this unique(bool|string $indexName = null) Add a unique index
3030
* @method $this unsigned() Set the INTEGER column as UNSIGNED (MySQL)
3131
* @method $this useCurrent() Set the TIMESTAMP column to use CURRENT_TIMESTAMP as default value
3232
* @method $this useCurrentOnUpdate() Set the TIMESTAMP column to use CURRENT_TIMESTAMP when updating (MySQL)
33-
* @method $this virtualAs(string $expression) Create a virtual generated column (MySQL/PostgreSQL/SQLite)
33+
* @method $this virtualAs(string|\Illuminate\Database\Query\Expression $expression) Create a virtual generated column (MySQL/PostgreSQL/SQLite)
3434
*/
3535
class ColumnDefinition extends Fluent
3636
{

0 commit comments

Comments
 (0)