D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
database
/
migrations
/
Filename :
2022_03_08_124911_create_blogs_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('blogs', function (Blueprint $table) { $table->id(); $table->uuid('uuid')->unique(); $table->bigInteger('user_id'); $table->string('title'); $table->string('slug'); $table->mediumText('details'); $table->string('image')->nullable(); $table->tinyInteger('status')->default(0)->comment('1=published, 0=unpublished'); $table->unsignedBigInteger('blog_category_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blogs'); } };