id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->text('content'); $table->integer('rating'); $table->enum('is_show', IsShow::values())->default(IsShow::SHOW)->comment(IsShow::comment()); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->nullable()->useCurrentOnUpdate(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('testimonials'); } };