| 123456789101112131415161718192021222324252627282930313233 |
- <?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('comments', function (Blueprint $table) {
- $table->id();
- $table->text('content')->nullable();
- $table->morphs('commentable');
- $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete();
- $table->boolean('is_banned')->default(false);
- $table->timestamps();
- $table->softDeletes();
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('comments');
- }
- };
|