View file File name : 2023_02_03_205420_create_notify_users_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotifyUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notify_users', function (Blueprint $table) { $table->id(); $table->integer('team_id')->nullable(); $table->integer('user_id')->nullable(); $table->string('notify_text'); $table->string('notify_style')->nullable(); $table->timestamp('shoot'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notify_users'); } }