fix:修复Laravel丢弃的接口

This commit is contained in:
JaguarJack
2024-03-14 12:17:32 +08:00
parent 70a47e35ec
commit 439d897038
2 changed files with 8 additions and 8 deletions

View File

@@ -92,14 +92,13 @@ class Schemas extends CatchModel
$columns = [];
foreach (getTableColumns($schema->name) as $columnString) {
$column = DB::connection()->getDoctrineColumn(DB::connection()->getTablePrefix().$schema->name, $columnString);
foreach (\Illuminate\Support\Facades\Schema::getColumns($schema->name) as $column) {
$columns[] = [
'name' => $column->getName(),
'type' => $column->getType()->getName(),
'nullable' => ! $column->getNotnull(),
'default' => $column->getDefault(),
'comment' => $column->getComment()
'name' => $column['name'],
'type' => $column['type_name'],
'nullable' => $column['nullable'],
'default' => $column['default'],
'comment' => $column['comment'],
];
}