Laravel 8 可用的命令别名
命令 | 说明 |
---|---|
$table->dropMorphs('morphable'); |
删除 morphable_id 和 morphable_type 字段 |
$table->dropRememberToken(); |
删除 remember_token 字段 |
$table->dropSoftDeletes(); |
删除 deleted_at 字段 |
$table->dropSoftDeletesTz(); |
dropSoftDeletes() 方法的别名 |
$table->dropTimestamps(); |
删除 created_at 和 updated_at 字段 |
$table->dropTimestampsTz(); |
dropTimestamps() 方法别名 |