id(); $table->integer('user_id', 255)->nullable(); $table->string('code', 255)->nullable(); $table->float('discount', 10, 2)->nullable(); $table->string('expiry', 255)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('coupons'); } };