PATH:
home
/
rwabteecom
/
project_11
/
database
/
migrations
/
Editing: 2024_03_27_192951_create_social_icons_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('social_icons', function (Blueprint $table) { $table->id(); $table->json('title'); $table->string('icon'); $table->string('background')->nullable(); $table->string('color')->default('#ffffff')->nullable(); $table->boolean('status')->default(true); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('social_icons'); } };
SAVE
CANCEL