Edit File: 2021_08_24_125206_create_intro_messages_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateIntroMessagesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('intro_messages', function (Blueprint $table) { $table->id(); $table->string('name')->nullable(); $table->string('phone')->nullable(); $table->string('email')->nullable(); $table->longText('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('intro_messages'); } }
Back to File Manager