Edit File: 2024_09_11_072236_create_socials_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. */ public function up(): void { Schema::create('socials', function (Blueprint $table) { $table->id(); $table->string('name', 100)->nullable(); $table->string('link', 255)->nullable(); $table->string('display_text', 255)->nullable(); $table->string('logo', 255)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('socials'); } };
Back