id(); $table->string('nama_diskon')->nullable(); $table->string('kode_diskon')->nullable(); $table->string('jumlah_diskon')->nullable(); $table->string('keterangan_diskon')->nullable(); $table->unsignedBigInteger("updated_by")->nullable(); $table->unsignedBigInteger("created_by")->nullable(); $table->unsignedBigInteger("deleted_by")->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('diskons'); } };