Lae/database/migrations/2022_11_06_205958_drop_drops_table.php

32 lines
460 B
PHP
Raw Normal View History

2022-11-06 13:31:35 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
2022-11-06 13:31:35 +00:00
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
// Drop table
Schema::dropIfExists('drops');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
// 不可逆
}
};