Skip to content

Commit

Permalink
fix: added image column to products table
Browse files Browse the repository at this point in the history
  • Loading branch information
icarojobs committed Jan 30, 2024
1 parent c0a3a66 commit be9b4e0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
}
Expand Down

0 comments on commit be9b4e0

Please sign in to comment.