diff --git a/database/migrations/2020_12_20_005609_change_products_table_cost_resolution.php b/database/migrations/2020_12_20_005609_change_products_table_cost_resolution.php new file mode 100644 index 000000000000..96cd7a95a3d4 --- /dev/null +++ b/database/migrations/2020_12_20_005609_change_products_table_cost_resolution.php @@ -0,0 +1,35 @@ +decimal('cost', 20, 6)->change(); + $table->decimal('price', 20, 6)->change(); + $table->decimal('quantity', 20, 6)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} + + + \ No newline at end of file