增加 module id

This commit is contained in:
iVampireSP.com 2022-11-20 22:26:37 +08:00
parent 4d2c52284d
commit 358c54b0f0
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -0,0 +1,35 @@
<?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::table('tasks', function (Blueprint $table) {
//
$table->string('module_id')->nullable()->after('host_id')->index();
$table->foreign('module_id')->references('id')->on('modules')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('tasks', function (Blueprint $table) {
//
});
}
};