Skip to content

Commit 892f495

Browse files
committed
Clean
1 parent 408eee4 commit 892f495

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/Database/Models/PgSQL/PgSQLUDTColumn.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public function __construct(string $table, array $column)
2929
'comment' => $column['comment'],
3030
'default' => $this->parseDefault($column['default'], ColumnType::STRING), // Assume is string
3131
'nullable' => $column['nullable'],
32-
// 'after' => "id",
3332
]);
3433

3534
$sqls = $blueprint->toSql(Schema::getConnection(), Schema::getConnection()->getSchemaGrammar());

src/Database/Models/SQLSrv/SQLSrvUDTColumn.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public function __construct(string $table, array $column)
2626
'autoIncrement' => $column['auto_increment'],
2727
'default' => $this->parseDefault($column['default']),
2828
'nullable' => $column['nullable'],
29-
// 'after' => "id",
3029
]);
3130

3231
$sqls = $blueprint->toSql(Schema::getConnection(), Schema::getConnection()->getSchemaGrammar());

0 commit comments

Comments
 (0)