We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0d5078 commit 9f632bfCopy full SHA for 9f632bf
src/Schema.php
@@ -156,12 +156,17 @@ protected function columnsList()
156
protected function columnsTypes($column)
157
{
158
return [
159
+ 'id' => ['id'],
160
'rememberToken' => ['remember_token'],
161
'softDeletes' => ['deleted_at'],
162
'softDeletesTz' => ['deleted_at'],
163
'timestamps' => ['created_at', 'updated_at'],
164
'timestampsTz' => ['created_at', 'updated_at'],
165
+ 'nullableTimestamps' => ['created_at', 'updated_at'],
166
'morphs' => ["{$column}_id", "{$column}_type"],
167
+ 'uuidMorphs' => ["{$column}_id", "{$column}_type"],
168
+ 'nullableUuidMorphs' => ["{$column}_id", "{$column}_type"],
169
+ 'nullableMorphs' => ["{$column}_id", "{$column}_type"],
170
];
171
}
172
0 commit comments