File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Illuminate/Database/Schema Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 12
12
* @method ColumnDefinition collation(string $collation) Specify a collation for the column (MySQL/SQL Server)
13
13
* @method ColumnDefinition comment(string $comment) Add a comment to the column (MySQL)
14
14
* @method ColumnDefinition default(mixed $value) Specify a "default" value for the column
15
- * @method ColumnDefinition first(string $column ) Place the column "first" in the table (MySQL)
15
+ * @method ColumnDefinition first() Place the column "first" in the table (MySQL)
16
16
* @method ColumnDefinition nullable($value = true) Allow NULL values to be inserted into the column
17
17
* @method ColumnDefinition storedAs($expression) Create a stored generated column (MySQL)
18
18
* @method ColumnDefinition unique() Add a unique index
22
22
* @method ColumnDefinition generatedAs($expression) Create a SQL compliant identity column (PostgreSQL)
23
23
* @method ColumnDefinition always() Used as a modifier for generatedAs() (PostgreSQL)
24
24
* @method ColumnDefinition index() Add an index
25
+ * @method ColumnDefinition change() Change the column
25
26
*/
26
27
class ColumnDefinition extends Fluent
27
28
{
You can’t perform that action at this time.
0 commit comments