Lae/database/migrations/2022_09_14_214642_drop_transcations_table.php

28 lines
449 B
PHP
Raw Normal View History

2022-09-14 13:47:29 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
2022-09-14 13:47:29 +00:00
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
2022-09-15 04:23:47 +00:00
Schema::dropIfExists('transcations');
2022-09-14 13:47:29 +00:00
}
// /**
// * Reverse the migrations.
// *
// * @return void
// */
// public function down()
// {
// //
// }
};