D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
database
/
migrations
/
Filename :
2022_04_18_071259_create_blog_comments_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('blog_comments', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('blog_id')->nullable(); $table->unsignedBigInteger('user_id')->nullable(); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->text('comment')->nullable(); $table->tinyInteger('status')->default(1)->comment('1=active, 2=deactivate')->nullable(); $table->unsignedBigInteger('parent_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blog_comments'); } };