28 lines
449 B
PHP
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()
|
|
// {
|
|
// //
|
|
// }
|
|
};
|