Lae/database/migrations/2022_09_14_214642_drop_transcations_table.php

30 lines
499 B
PHP
Raw Normal View History

2022-09-14 13:47:29 +00:00
<?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()
// {
// //
// }
};