id(); $table->string('name'); $table->text('how_to_get'); $table->unsignedInteger('points'); $table->unsignedInteger('stock')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('rewards'); } };