- -- ******************************************************************
- -- 为 kku_pet_users 表添加软删除字段
- -- 对应的Model: App\Module\Pet\Models\PetUser
- -- 执行时间: 2025年06月07日
- -- ******************************************************************
- -- 添加 deleted_at 字段
- ALTER TABLE `kku_pet_users`
- ADD COLUMN `deleted_at` timestamp NULL DEFAULT NULL COMMENT '删除时间' AFTER `updated_at`;
- -- 为 deleted_at 字段添加索引(可选,用于提高软删除查询性能)
- ALTER TABLE `kku_pet_users`
- ADD INDEX `idx_deleted_at` (`deleted_at`);
|