id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('url', 2048); $table->string('title')->nullable(); $table->string('site_title')->nullable(); $table->timestamp('last_fetched_at')->nullable(); $table->string('last_fetch_status')->nullable(); $table->timestamps(); $table->index('user_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('feeds'); } };