Edit File: 2021_08_17_165636_create_socials_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSocialsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('socials', function (Blueprint $table) { $table->id(); $table->string('icon')->default('default.png'); $table->string('link')->nullable(); $table->string('name')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('socials'); } }
Back to File Manager