Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
- Fixed : missing column
  • Loading branch information
Blair2004 committed May 7, 2021
1 parent 3eab9b4 commit d8241a1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public function up()
$table->integer( 'product_id' );
$table->float( 'purchase_price', 11, 5 )->default(0);
$table->float( 'quantity', 11, 5 );
$table->float( 'available_quantity', 11, 5 );
$table->integer( 'tax_group_id' );
$table->string( 'barcode' )->nullable();
$table->datetime( 'expiration_date' )->nullable();
Expand Down

0 comments on commit d8241a1

Please sign in to comment.