diff --git a/database/migrations/2024_01_30_075239_create_products_table.php b/database/migrations/2024_01_30_075239_create_products_table.php index 2ce53e7..65bfebc 100644 --- a/database/migrations/2024_01_30_075239_create_products_table.php +++ b/database/migrations/2024_01_30_075239_create_products_table.php @@ -15,6 +15,7 @@ public function up(): void $table->float('cost_price', 10,); $table->float('sale_price', 10); $table->unsignedInteger('in_stock')->default(0); + $table->string('image')->nullable(); $table->timestamps(); }); }