OwlCyberSecurity - MANAGER
Edit File: 2022_08_14_091650_create_regions_table.php
<?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::create('regions', function (Blueprint $table) { $table->id(); $table->string('name', 255)->nullable(); $table->string('AddExchangeDisplayName',255)->nullable(); $table->integer('Shippment_exchange_id')->index(); $table->integer('Broker_exchange_id')->index(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('regions'); } };