id(); $table->string('name'); $table->string('description')->nullable(); $table->string('icon')->default('🎁'); $table->unsignedInteger('points_cost'); $table->unsignedInteger('minutes')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('rewards'); } };