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

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

28 lines
449 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()
{
//
Schema::dropIfExists('transcations');
}
// /**
// * Reverse the migrations.
// *
// * @return void
// */
// public function down()
// {
// //
// }
};