improve tmp invite log

This commit is contained in:
xiaomlove
2024-02-26 23:45:19 +08:00
parent 9c07206c21
commit bc1827fba4
3 changed files with 44 additions and 1 deletions
@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$columnInfo = \Nexus\Database\NexusDB::getMysqlColumnInfo("torrents", "cache_stamp");
if ($columnInfo["DATA_TYPE"] == "int") {
return;
}
Schema::table('torrents', function (Blueprint $table) {
$table->integer("cache_stamp")->default(0)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('torrents', function (Blueprint $table) {
//
});
}
};