id(); $table->string('url'); $table->string('title')->nullable(); $table->text('description')->nullable(); $table->boolean('is_valid')->nullable(); $table->boolean('is_duplicate')->default(false); $table->timestamp('validated_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('articles'); } };