D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
lactobokashi.com
/
database
/
migrations
/
Filename :
2023_07_10_072402_create_addons_table.php
back
Copy
<?php use App\Enums\Status; 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('addons', function (Blueprint $table) { $table->id(); $table->string('title'); $table->string('slug'); $table->longText('description')->nullable(); $table->string('version')->nullable(); $table->dateTime('date')->nullable(); $table->string('author')->nullable(); $table->json('files')->nullable(); $table->string('item_id'); $table->string('license_code'); $table->tinyInteger('status')->default(Status::ACTIVE); $table->string('creator_type')->nullable(); $table->bigInteger('creator_id')->nullable(); $table->string('editor_type')->nullable(); $table->bigInteger('editor_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('addons'); } };