OwlCyberSecurity - MANAGER
Edit File: 2023_06_05_184606_create_stores_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('stores', function (Blueprint $table) { $table->increments('id'); $table->string('name')->nullable(); $table->string('slug')->nullable(); $table->text('description')->nullable(); $table->text('url')->nullable(); $table->text('destination_url')->nullable(); $table->integer('category_id')->nullable(); $table->integer('network_id')->nullable(); $table->text('meta_title')->nullable(); $table->text('meta_keywords')->nullable(); $table->text('meta_description')->nullable(); $table->string('image')->nullable(); $table->tinyInteger('status')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('stores'); } };