improve paid torrent + hit and run

This commit is contained in:
xiaomlove
2025-06-17 20:54:18 +07:00
parent ee4757cdc9
commit 3db4537153
21 changed files with 326 additions and 70 deletions
+9
View File
@@ -353,6 +353,15 @@ class Update extends Install
Setting::updateUserTokenPermissionAllowedCache(TokenRepository::listUserTokenPermissions(false));
}
/**
* @since 1.9.5
*/
if (!Schema::hasColumn("snatched", "hit_and_run_id")) {
$this->runMigrate("database/migrations/2025_06_09_222012_add_hr_and_buy_id_to_snatched_table.php");
Artisan::call("upgrade:migrate_snatched_hr_id");
Artisan::call("upgrade:migrate_snatched_buy_log_id");
}
}
public function runExtraMigrate()