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