id(); $table->integer('sort_order')->default(0); $table->string('title', 2048); $table->string('description', 2048)->nullable(); $table->string('additional_info', 2048)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('promotions'); } };