2022-09-14 13:47:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2022-11-16 05:16:56 +00:00
|
|
|
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()
|
|
|
|
// {
|
|
|
|
// //
|
|
|
|
// }
|
|
|
|
};
|