Drop transcations

This commit is contained in:
iVampireSP.com 2022-09-14 21:47:29 +08:00
parent 509fd72365
commit b8549903f8
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -0,0 +1,29 @@
<?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()
{
//
Schema::dropDatabaseIfExists('transcations');
}
// /**
// * Reverse the migrations.
// *
// * @return void
// */
// public function down()
// {
// //
// }
};