// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.kodsolutions.net
/
database
/
migrations
[ PARENT ]
EDIT :: 2024_07_20_192454_create_statuses_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('statuses', function (Blueprint $table) { $table->id(); $table->boolean('active')->default(0)->nullable(); $table->integer('position')->default(0)->nullable(); $table->string('title')->nullable(); $table->integer('type')->default(0)->nullable(); //order - payment method - payment-status $table->string('slug')->default('01')->nullable(); $table->integer('code')->default(0)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('statuses'); } };
SAVE
CANCEL