Edit File: 2021_06_28_213150_create_contact_us_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateContactUsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('contact_us', function (Blueprint $table) { $table->id(); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->string('country_key')->nullable(); $table->longText('message')->nullable(); $table->string('senderType')->nullable(); $table->foreignId('user_id')->nullable()->constrained(); $table->boolean('showOrNow')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contact_us'); } }
Back to File Manager