id(); $table->foreignId('company_id')->nullable()->constrained()->onDelete('cascade'); $table->string('name'); $table->string('type')->default('image'); // image, video $table->integer('duration')->default(15); // 15, 30, 60 $table->string('url'); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('advertisements'); } };