OwlCyberSecurity - MANAGER
Edit File: 2023_06_05_184636_create_sliders_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('sliders', function (Blueprint $table) { $table->increments('id'); $table->text('heading')->nullable(); $table->text('description')->nullable(); $table->text('link')->nullable(); $table->double('price')->default(0.00); $table->string('image')->nullable(); $table->tinyInteger('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sliders'); } };