chore: menambahkan soft deletes untuk table inventory

This commit is contained in:
Yoga Pangestu 2024-11-23 10:37:21 +07:00
parent ec0d01e683
commit e8187c12c9

View File

@ -19,6 +19,7 @@ public function up(): void
$table->integer('quantity');
$table->text('description');
$table->timestamps();
$table->softDeletes();
});
}