id(); $table->string('name', 50); $table->unsignedBigInteger('min_spending'); $table->unsignedBigInteger('max_spending')->nullable(); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->nullable()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tiers'); } };