id(); $table->string('code')->unique(); $table->text('description')->nullable(); $table->timestamps(); $table->index('code'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pricing_codes'); } };