Lae/database/migrations/2022_11_06_205958_drop_drops_table.php
iVampireSP.com 4918efa597
优化导入,格式化代码
分离出充值系统

修复了充值的问题
2022-11-16 13:16:56 +08:00

32 lines
460 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
// Drop table
Schema::dropIfExists('drops');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
// 不可逆
}
};