id(); $table->string('name'); // "VRT News", "Belga News Agency" $table->string('url'); // "https://vrt.be" or "https://feeds.example.com/rss.xml" $table->enum('type', ['website', 'rss']); // Feed type $table->string('language', 5)->default('en'); // Language code (en, nl, etc.) $table->text('description')->nullable(); $table->json('settings')->nullable(); // Custom settings per feed type $table->boolean('is_active')->default(true); $table->timestamp('last_fetched_at')->nullable(); $table->timestamps(); $table->unique('url'); }); } public function down(): void { Schema::dropIfExists('feeds'); } };