diff --git a/database/migrations/2026_04_24_224611_update_sign_repair_card_defaults.php b/database/migrations/2026_04_24_224611_update_sign_repair_card_defaults.php deleted file mode 100644 index f78db10..0000000 --- a/database/migrations/2026_04_24_224611_update_sign_repair_card_defaults.php +++ /dev/null @@ -1,41 +0,0 @@ -where('slug', 'sign_repair_card') - ->update([ - 'price' => 10000, - 'description' => '用于补签本月漏掉的未签到日期,每张可补签 1 天;不能补签上月或更早日期。', - 'updated_at' => now(), - ]); - } - - /** - * 方法功能:回滚补签卡默认价格和旧说明,方便本地调试回退。 - */ - public function down(): void - { - DB::table('shop_items') - ->where('slug', 'sign_repair_card') - ->update([ - 'price' => 1200, - 'description' => '用于补签漏掉的历史日期,每张可补签 1 天。', - 'updated_at' => now(), - ]); - } -};