create('articles', function (Blueprint $table) { $table->id(); $table->string('url')->unique(); $table->string('title')->nullable(); $table->json('data')->nullable(); $table->timestamp('seen_at')->useCurrent(); }); } public function down(): void { Capsule::schema()->dropIfExists('articles'); } };